Nested Object in Kibana visualize

sinaei picture sinaei · Jun 4, 2015 · Viewed 11.7k times · Source

I have uploaded the JSON file in elasticsearch and my mapping contains of some nested objects.

The problem is that, in Kibana, in visualize I can not see them

This is my mapping:

"comments": {
    "type": "nested",
    "properties": {
        "count": {
            "type": "integer"
        },
        "data": {
            "type":"nested",
            "properties": {
                "created_time": {
                    "type": "integer"
                }
            }
        }
    }
}

But in kibana when I insert comments.count I cannot see any result, but in Discover page, the comments.count field is exist!

How can I search for this field?

Answer

sinaei picture sinaei · Jun 5, 2015

As I found, Kibana can not deal with nested or parent/child