gpt4 book ai didi

elasticsearch - 查看Vega + Kibana中不是 `doc_count`的所有内容

转载 作者:行者123 更新时间:2023-12-02 23:42:28 28 4
gpt4 key购买 nike

我目前正在Kibana开发Vega可视化。下图显示了索引的doc_count,它实际上是Kibana在Amazon ELK中提供的默认脚本。尽管在https://vega.github.io/editor中开发更简单,但最终的想法是在仪表板上可视化Elasticsearch数据。
Document count over time
有一些将Vega与Kibana集成的示例,但是最后我只找到了显示索引的doc_count的示例。例如https://www.elastic.co/blog/getting-started-with-vega-visualizations-in-kibana
目前,我正在寻找有关自定义搜索查询的详细信息https://www.elastic.co/guide/en/elasticsearch/reference/7.x/search-search.html,以便在聚合存储桶中返回除doc_count之外的其他内容。

最佳答案

因此,我在https://www.elastic.co/guide/en/elasticsearch/reference/7.x/search-aggregations-bucket-filter-aggregation.html中发现,只需要添加一个子聚合,或在存储桶聚合内添加另一聚合,即可在存储桶中获得除doc_count之外的值。
以此为例:

POST /sales/_search?size=0
{
"aggs" : {
"sales_over_time" : {
"date_histogram" : {
"field" : "date",
"calendar_interval" : "month"
},
"aggs" : {
"avg_price" : { "avg" : { "field" : "price" } }
}
}
}
}

关于elasticsearch - 查看Vega + Kibana中不是 `doc_count`的所有内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64262232/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com