| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395 | [[search-aggregations-bucket-daterange-aggregation]]=== Date Range AggregationA range aggregation that is dedicated for date values. The main differencebetween this aggregation and the normal<<search-aggregations-bucket-range-aggregation,range>>aggregation is that the `from` and `to` values can be expressed in<<date-math,Date Math>> expressions, and it is also possible to specify a dateformat by which the `from` and `to` response fields will be returned.Note that this aggregation includes the `from` value and excludes the `to` valuefor each range.Example:[source,console,id=daterange-aggregation-example]--------------------------------------------------POST /sales/_search?size=0{  "aggs": {    "range": {      "date_range": {        "field": "date",        "format": "MM-yyyy",        "ranges": [          { "to": "now-10M/M" },  <1>          { "from": "now-10M/M" } <2>        ]      }    }  }}--------------------------------------------------// TEST[setup:sales s/now-10M\/M/10-2015/]<1> < now minus 10 months, rounded down to the start of the month.<2> >= now minus 10 months, rounded down to the start of the month.In the example above, we created two range buckets, the first will "bucket" alldocuments dated prior to 10 months ago and the second will "bucket" alldocuments dated since 10 months agoResponse:[source,console-result]--------------------------------------------------{  ...  "aggregations": {    "range": {      "buckets": [        {          "to": 1.4436576E12,          "to_as_string": "10-2015",          "doc_count": 7,          "key": "*-10-2015"        },        {          "from": 1.4436576E12,          "from_as_string": "10-2015",          "doc_count": 0,          "key": "10-2015-*"        }      ]    }  }}--------------------------------------------------// TESTRESPONSE[s/\.\.\./"took": $body.took,"timed_out": false,"_shards": $body._shards,"hits": $body.hits,/]==== Missing ValuesThe `missing` parameter defines how documents that are missing a value shouldbe treated. By default they will be ignored but it is also possible to treatthem as if they had a value. This is done by adding a set of fieldname :value mappings to specify default values per field.[source,console,id=daterange-aggregation-missing-example]--------------------------------------------------POST /sales/_search?size=0{   "aggs": {       "range": {           "date_range": {               "field": "date",               "missing": "1976/11/30",               "ranges": [                  {                     "key": "Older",                    "to": "2016/02/01"                   }, <1>                  {                     "key": "Newer",                    "from": "2016/02/01",                     "to" : "now/d"                   }              ]          }      }   }}--------------------------------------------------// TEST[setup:sales]<1> Documents without a value in the `date` field will be added to the "Older"bucket, as if they had a date value of "1976-11-30". [[date-format-pattern]]==== Date Format/PatternNOTE: this information was copied fromhttps://docs.oracle.com/javase/8/docs/api/java/time/format/DateTimeFormatter.html[DateTimeFormatter]All ASCII letters are reserved as format pattern letters, which are definedas follows:[options="header"]|=======|Symbol |Meaning                    |Presentation |Examples|G      |era                        |text         |AD; Anno Domini; A|u      |year                       |year         |2004; 04|y      |year-of-era                |year         |2004; 04|D      |day-of-year                |number       |189|M/L    |month-of-year              |number/text  |7; 07; Jul; July; J|d      |day-of-month               |number       |10|Q/q    |quarter-of-year            |number/text  |3; 03; Q3; 3rd quarter|Y      |week-based-year            |year         |1996; 96|w      |week-of-week-based-year    |number       |27|W      |week-of-month              |number       |4|E      |day-of-week                |text         |Tue; Tuesday; T|e/c    |localized day-of-week      |number/text  |2; 02; Tue; Tuesday; T|F      |week-of-month              |number       |3|a      |am-pm-of-day               |text         |PM|h      |clock-hour-of-am-pm (1-12) |number       |12|K      |hour-of-am-pm (0-11)       |number       |0|k      |clock-hour-of-am-pm (1-24) |number       |0|H      |hour-of-day (0-23)         |number       |0|m      |minute-of-hour             |number       |30|s      |second-of-minute           |number       |55|S      |fraction-of-second         |fraction     |978|A      |milli-of-day               |number       |1234|n      |nano-of-second             |number       |987654321|N      |nano-of-day                |number       |1234000000|V      |time-zone ID               |zone-id      |America/Los_Angeles; Z; -08:30|z      |time-zone name             |zone-name    |Pacific Standard Time; PST|O      |localized zone-offset      |offset-O     |GMT+8; GMT+08:00; UTC-08:00;|X      |zone-offset 'Z' for zero   |offset-X     |Z; -08; -0830; -08:30; -083015; -08:30:15;|x      |zone-offset                |offset-x     |+0000; -08; -0830; -08:30; -083015; -08:30:15;|Z      |zone-offset                |offset-Z     |+0000; -0800; -08:00;|p      |pad next                   |pad modifier |1|'      |escape for text            |delimiter|''     |single quote               |literal      |'|[      |optional section start|]      |optional section end|#      |reserved for future use|{      |reserved for future use|}      |reserved for future use|=======The count of pattern letters determines the format.Text:: The text style is determined based on the number of pattern lettersused. Less than 4 pattern letters will use the short form. Exactly 4pattern letters will use the full form. Exactly 5 pattern letters will usethe narrow form. Pattern letters `L`, `c`, and `q` specify the stand-aloneform of the text styles.Number:: If the count of letters is one, then the value is output usingthe minimum number of digits and without padding. Otherwise, the count ofdigits is used as the width of the output field, with the valuezero-padded as necessary. The following pattern letters have constraintson the count of letters. Only one letter of `c` and `F` can be specified.Up to two letters of `d`, `H`, `h`, `K`, `k`, `m`, and `s` can bespecified. Up to three letters of `D` can be specified.Number/Text:: If the count of pattern letters is 3 or greater, use theText rules above. Otherwise use the Number rules above.Fraction:: Outputs the nano-of-second field as a fraction-of-second. Thenano-of-second value has nine digits, thus the count of pattern letters isfrom 1 to 9. If it is less than 9, then the nano-of-second value istruncated, with only the most significant digits being output.Year:: The count of letters determines the minimum field width below whichpadding is used. If the count of letters is two, then a reduced two digitform is used. For printing, this outputs the rightmost two digits. Forparsing, this will parse using the base value of 2000, resulting in a yearwithin the range 2000 to 2099 inclusive. If the count of letters is lessthan four (but not two), then the sign is only output for negative yearsas per `SignStyle.NORMAL`. Otherwise, the sign is output if the pad width isexceeded, as per `SignStyle.EXCEEDS_PAD`.ZoneId:: This outputs the time-zone ID, such as `Europe/Paris`. If thecount of letters is two, then the time-zone ID is output. Any other countof letters throws `IllegalArgumentException`.Zone names:: This outputs the display name of the time-zone ID. If thecount of letters is one, two or three, then the short name is output. Ifthe count of letters is four, then the full name is output. Five or moreletters throws `IllegalArgumentException`.Offset X and x:: This formats the offset based on the number of patternletters. One letter outputs just the hour, such as `+01`, unless theminute is non-zero in which case the minute is also output, such as`+0130`. Two letters outputs the hour and minute, without a colon, such as`+0130`. Three letters outputs the hour and minute, with a colon, such as`+01:30`. Four letters outputs the hour and minute and optional second,without a colon, such as `+013015`. Five letters outputs the hour andminute and optional second, with a colon, such as `+01:30:15`. Six ormore letters throws `IllegalArgumentException`. Pattern letter `X` (uppercase) will output `Z` when the offset to be output would be zero,whereas pattern letter `x` (lower case) will output `+00`, `+0000`, or`+00:00`.Offset O:: This formats the localized offset based on the number ofpattern letters. One letter outputs the short form of the localizedoffset, which is localized offset text, such as `GMT`, with hour withoutleading zero, optional 2-digit minute and second if non-zero, and colon,for example `GMT+8`. Four letters outputs the full form, which islocalized offset text, such as `GMT, with 2-digit hour and minutefield, optional second field if non-zero, and colon, for example`GMT+08:00`. Any other count of letters throws`IllegalArgumentException`.Offset Z:: This formats the offset based on the number of pattern letters.One, two or three letters outputs the hour and minute, without a colon,such as `+0130`. The output will be `+0000` when the offset is zero.Four letters outputs the full form of localized offset, equivalent tofour letters of Offset-O. The output will be the corresponding localizedoffset text if the offset is zero. Five letters outputs the hour,minute, with optional second if non-zero, with colon. It outputs `Z` ifthe offset is zero. Six or more letters throws IllegalArgumentException.Optional section:: The optional section markers work exactly like calling`DateTimeFormatterBuilder.optionalStart()` and`DateTimeFormatterBuilder.optionalEnd()`.Pad modifier:: Modifies the pattern that immediately follows to be paddedwith spaces. The pad width is determined by the number of pattern letters.This is the same as calling `DateTimeFormatterBuilder.padNext(int)`.For example, `ppH` outputs the hour-of-day padded on the left with spaces to a width of 2.Any unrecognized letter is an error. Any non-letter character, other than`[`, `]`, `{`, `}`, `#` and the single quote will be output directly.Despite this, it is recommended to use single quotes around all charactersthat you want to output directly to ensure that future changes do notbreak your application.[[time-zones]]==== Time zone in date range aggregationsDates can be converted from another time zone to UTC by specifying the`time_zone` parameter.Time zones may either be specified as an ISO 8601 UTC offset (e.g. +01:00 or-08:00) or as one of the time zone ids from the TZ database.The `time_zone` parameter is also applied to rounding in date math expressions.As an example, to round to the beginning of the day in the CET time zone, youcan do the following:[source,console,id=daterange-aggregation-timezone-example]--------------------------------------------------POST /sales/_search?size=0{   "aggs": {       "range": {           "date_range": {               "field": "date",               "time_zone": "CET",               "ranges": [                  { "to": "2016/02/01" }, <1>                  { "from": "2016/02/01", "to" : "now/d" }, <2>                  { "from": "now/d" }              ]          }      }   }}--------------------------------------------------// TEST[setup:sales]<1> This date will be converted to `2016-02-01T00:00:00.000+01:00`.<2> `now/d` will be rounded to the beginning of the day in the CET time zone.==== Keyed ResponseSetting the `keyed` flag to `true` will associate a unique string key with eachbucket and return the ranges as a hash rather than an array:[source,console,id=daterange-aggregation-keyed-example]--------------------------------------------------POST /sales/_search?size=0{  "aggs": {    "range": {      "date_range": {        "field": "date",        "format": "MM-yyy",        "ranges": [          { "to": "now-10M/M" },          { "from": "now-10M/M" }        ],        "keyed": true      }    }  }}--------------------------------------------------// TEST[setup:sales s/now-10M\/M/10-2015/]Response:[source,console-result]--------------------------------------------------{  ...  "aggregations": {    "range": {      "buckets": {        "*-10-2015": {          "to": 1.4436576E12,          "to_as_string": "10-2015",          "doc_count": 7        },        "10-2015-*": {          "from": 1.4436576E12,          "from_as_string": "10-2015",          "doc_count": 0        }      }    }  }}--------------------------------------------------// TESTRESPONSE[s/\.\.\./"took": $body.took,"timed_out": false,"_shards": $body._shards,"hits": $body.hits,/]It is also possible to customize the key for each range:[source,console,id=daterange-aggregation-keyed-multiple-keys-example]--------------------------------------------------POST /sales/_search?size=0{  "aggs": {    "range": {      "date_range": {        "field": "date",        "format": "MM-yyy",        "ranges": [          { "from": "01-2015", "to": "03-2015", "key": "quarter_01" },          { "from": "03-2015", "to": "06-2015", "key": "quarter_02" }        ],        "keyed": true      }    }  }}--------------------------------------------------// TEST[setup:sales]Response:[source,console-result]--------------------------------------------------{  ...  "aggregations": {    "range": {      "buckets": {        "quarter_01": {          "from": 1.4200704E12,          "from_as_string": "01-2015",          "to": 1.425168E12,          "to_as_string": "03-2015",          "doc_count": 5        },        "quarter_02": {          "from": 1.425168E12,          "from_as_string": "03-2015",          "to": 1.4331168E12,          "to_as_string": "06-2015",          "doc_count": 2        }      }    }  }}--------------------------------------------------// TESTRESPONSE[s/\.\.\./"took": $body.took,"timed_out": false,"_shards": $body._shards,"hits": $body.hits,/]
 |