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?
Asked
Active
Viewed 4,665 times
1 Answers
1
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.

Amit Yadav
- 949
- 8
- 19
-
Thank you , is there a way to do this using elastic search query ? – Punter Vicky Aug 20 '17 at 05:14
-
kibana is just visualization tool which runs on top of Elasticsearch index. You will have to take out the fields that you want from json object and index them in ES. Kibana will pick them up – Amit Yadav Aug 20 '17 at 05:34
-
I had a similar question. You need to do some processing before: https://stackoverflow.com/questions/63413555/transform-string-into-json-so-that-its-searchable-in-kibana-elasticsearch – kwoxer Aug 17 '20 at 07:44