Kibana is displaying one specific field of type long with a weird format - other fields with the same type in the same index are not

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"
          }
        }

Hi Veverke,

Can it be that you have a custom formatter associated with that particular field?
You can check in Management > Index Patterns.

Let us know,
Liza

1 Like

Great Liza, you got it!
Fixed.

Thanks a lot!

1 Like

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.