我目前正在使用Kibana 4,而且我在为特定类型创建可视化时遇到问题。我的ElasticSearch索引看起来像这样:
{
"school_data": {
"mappings": {
"teacher": {
"properties": {
"Name": {
"type": "string"
},
"School": {
"type": "string"
}
}
},
"student": {
"properties": {
"Name": {
"type": "string"
},
"School": {
"type": "string"
}
}
}
}
}
}
索引为school_data
,两种类型为teacher
和student
。我可以将索引school_data
加载到Kibana中,但我能看到的唯一字段是Name
和School
。有没有办法使可视化只针对其中一种类型?即,我是否可以进行可视化显示前20个不同teacher
名称的计数?
答案 0 :(得分:1)
您应该可以通过放入搜索栏_type: "<your_type>"
来选择所需类型的文档。此搜索仅选择具有该特定类型的文档。这将允许您执行显示<your_type>
的前20个计数的可视化。