处理Kibana中不同类型的重复字段

时间:2017-04-05 19:10:00

标签: kibana kibana-4

我目前正在使用Kibana 4,而且我在为特定类型创建可视化时遇到问题。我的ElasticSearch索引看起来像这样:

{
    "school_data": {
        "mappings": {
            "teacher": {
                "properties": {
                    "Name": {
                        "type": "string"
                    },
                    "School": {
                        "type": "string"
                    }
                }
            },
            "student": {
                "properties": {
                    "Name": {
                        "type": "string"
                    },
                    "School": {
                        "type": "string"
                    }
                }
            }
        }
    }
}

索引为school_data,两种类型为teacherstudent。我可以将索引school_data加载到Kibana中,但我能看到的唯一字段是NameSchool。有没有办法使可视化只针对其中一种类型?即,我是否可以进行可视化显示前20个不同teacher名称的计数?

1 个答案:

答案 0 :(得分:1)

您应该可以通过放入搜索栏_type: "<your_type>"来选择所需类型的文档。此搜索仅选择具有该特定类型的文档。这将允许您执行显示<your_type>的前20个计数的可视化。