diff options
author | Bryan Newbold <bnewbold@archive.org> | 2020-12-17 13:08:39 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2020-12-17 13:08:39 -0800 |
commit | 8a4376fb2a3404ffaf58b6946f1086bdc793aea5 (patch) | |
tree | f040718917e9ac22017cf0598db1f0aabc6ce1b1 /tests/files/search/POST_search_agg_histogram.txt | |
parent | 3940c481760fbe2c9299fb52513e7717b8e3c214 (diff) | |
download | es-public-proxy-8a4376fb2a3404ffaf58b6946f1086bdc793aea5.tar.gz es-public-proxy-8a4376fb2a3404ffaf58b6946f1086bdc793aea5.zip |
add support for date_histogram and composite aggregations
Diffstat (limited to 'tests/files/search/POST_search_agg_histogram.txt')
-rw-r--r-- | tests/files/search/POST_search_agg_histogram.txt | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/files/search/POST_search_agg_histogram.txt b/tests/files/search/POST_search_agg_histogram.txt new file mode 100644 index 0000000..4689ad1 --- /dev/null +++ b/tests/files/search/POST_search_agg_histogram.txt @@ -0,0 +1,13 @@ +POST /sales/_search?size=0 +{ + "aggs": { + "quantity": { + "histogram": { + "field": "quantity", + "interval": 10, + "keyed": true, + "missing": 0 + } + } + } +} |