Using Kibana 7.4.2
I can't determine why Kibana is displaying a specific index field - which type is long - in the following format - [value]00% where value is its value.
The fields below are all defined with type long, but only ReportExecutionRowCount
is displayed in this strange format.
"ReportExecutionRowCount": {
"type": "long"
}
"FleetsCount": {
"type": "long"
},
"GroupsCount": {
"type": "long"
},
"UnitsCount": {
"type": "long"
}
"TotalDays": {
"type": "long"
}
See screenshot below:
I googled for the issue, without success. Any ideas ? Why are the other values displayed without this format ? The json's value is 307, as seen in querying the document via console.
"_source" : {
"Report" : {
"ReportExecutionRowCount" : 307,
"TimeStamp" : "2019/12/23 09:17:53"
}
}