GET idx/type/_search { "size": 0, "query": { "bool": { "filter": [ { "terms": { "key": [ "75610c7ee12bc268af33ddb31828a4b8" ] } }, { "range": { "hits": { "gt": 10 } } } ] } }, "aggs": { "key": { "terms": { "field": "key", "size": 100000 }, "aggs": { "date_histogram": { "date_histogram": { "field": "create_date", "interval": "day" }, "aggs": { "avg__plt": { "avg": { "field": "plt__stats.data" } }, "movavg__plt": { "moving_avg": { "buckets_path": "avg__plt", "model": "ewma", "window": 7, "gap_policy": "skip", "predict": 1 } }, "avg__connection_time": { "avg": { "field": "connection_time__stats.data" } }, "movavg__connection_time": { "moving_avg": { "buckets_path": "avg__connection_time", "model": "ewma", "window": 7, "gap_policy": "skip", "predict": 1 } } } } } } } }