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?
As I found, Kibana can not deal with nested or parent/child