Elasticsearch Aggregation of DateRange date range aggregation

Source: Internet
Author: User
Tags elasticsearch aggregation

A date range is a range that can be specified by time, compared to the range aggregation.

For example:

{    "Aggs":{        "Range":{            "Date_range":{                "Field":"Date",                "format":"mm-yyy",                "Ranges":[                    {" to":"now-10m/m"},                    {" from":"now-10m/m"}                ]            }        }    }}

To:now-10m/m said that the past 10 months ago

From:now-10m/m said that from 10 months ago to the present

The results are as follows:

{    ...    "Aggregations":{        "Range":{            "Buckets":[                {                    " to":1.3437792E+12,                    "to_as_string":"08-2012",                    "Doc_count":7                },{                    " from":1.3437792E+12,                    "from_as_string":"08-2012",                    "Doc_count":2                }            ]        }    }}

It also supports many other date representations, which can be referred to as Joda date representations.

Elasticsearch Aggregation of DateRange date range aggregation

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.