Punter Vicky
Punter Vicky

Reputation: 16992

Extracting a json field using Kibana

I have multiple fields stored as part of my log in elastic search. I am using Kibana to query the fields.One of the fields has a json object. I need to extract certain fields from the json object. Is there a way to do it using Kibana?

Upvotes: 2

Views: 6042

Answers (1)

Amit Yadav
Amit Yadav

Reputation: 1039

As of present Kibana does not support nested json objects. There was some work being done - https://github.com/elastic/kibana/issues/1084

You can separate out fields you want from nested object to parent level key-value pair and then Kibana will be able to visualize it.

Upvotes: 2

Related Questions