说我有以下关于聚合的类似json的Elasticsearch查询:
POST /testi/_search?size=0
{
"aggs": {
"nested_properties": {
"nested": {
"path": "bill"
},
"aggs": {
"filtered_by_attribute": {
"filter": {
"term": {
"bill.code": 2
}
},
"aggs": {
"avg_coded_string_2": {
"avg": {
"field": "bill.value"
}
}
}
}
}
}
}
}
如何直接使用此查询在Kibana中创建可视化?
除了kibana Query
和Lucene Query
之外,我什么也找不到。