Kibana按时间(小时,分钟,天)统计数据 ,
GET visit_log_template-2021.01/_search { "size": 0, "query": { "bool": { "must": [{ "range": { "Date": { "gte": "2021-01-11 00:00", "lte":"2021-01-17 23:59", "format":"yyyy-MM-dd HH:mm" } } }, { "term": { "AppCode": { "value": "B07" } } }] } }, "aggs": { "2": { "date_histogram": { "field": "Date", "interval": "1h", //h 小时,m分 "min_doc_count": 1 } } } }
本文来自博客园,作者:方金,转载请注明原文链接:https://www.cnblogs.com/Gold-fangjin/p/14366015.html