欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Elasticsearch 5.x date range 查询

程序员文章站 2022-07-05 09:04:29
...

{
    "size": 0,
    "query": {
        "match": {
            "appName": "zis-search-za-search-service.prd.za-tech.net"
        }
    },
    "aggs": {
        "range": {
            "date_range": {
                "field": "time",
                "format": "yyyy-MM-dd HH:mm:ss",
                "time_zone": "+08:00",
                "ranges": [
                    {
                        "from": "now-2m"
                    }
                ]
            },
            "aggs": {
                "sum_request_length": {
                    "sum": {
                        "field": "request_length"
                    }
                }
            }
        }
    }
}