Kibana中的嵌套对象可视化

sin*_*aei 9 elasticsearch kibana kibana-4

我在elasticsearch中上传了JSON文件,我的映射包含一些嵌套对象.

问题是,在Kibana中,在visualize中我看不到它们

这是我的映射:

"comments": {
    "type": "nested",
    "properties": {
        "count": {
            "type": "integer"
        },
        "data": {
            "type":"nested",
            "properties": {
                "created_time": {
                    "type": "integer"
                }
            }
        }
    }
}
Run Code Online (Sandbox Code Playgroud)

但是在插入comments.count的 kibana中我看不到任何结果,但在Discover页面中,comments.count字段存在!

我该如何搜索这个字段?

sin*_*aei 16

正如我发现的,Kibana无法处理嵌套父/子