【发布时间】:2015-08-19 08:08:17
【问题描述】:
我已在 elasticsearch 中上传 JSON 文件,我的映射包含一些嵌套对象。
问题是,在 Kibana 中,我无法看到它们
这是我的映射:
"comments": {
"type": "nested",
"properties": {
"count": {
"type": "integer"
},
"data": {
"type":"nested",
"properties": {
"created_time": {
"type": "integer"
}
}
}
}
}
但是在 kibana 中插入 cmets.count 时看不到任何结果,但是在发现页面中,存在 cmets.count 字段!
如何搜索此字段?
【问题讨论】:
标签: elasticsearch kibana kibana-4