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 } } } }