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/GET_search_agg_composite_mixed.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/GET_search_agg_composite_mixed.txt')
-rw-r--r-- | tests/files/search/GET_search_agg_composite_mixed.txt | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/files/search/GET_search_agg_composite_mixed.txt b/tests/files/search/GET_search_agg_composite_mixed.txt new file mode 100644 index 0000000..4649d8c --- /dev/null +++ b/tests/files/search/GET_search_agg_composite_mixed.txt @@ -0,0 +1,15 @@ +GET /some-index/_search +{ + "size": 0, + "aggs": { + "my_buckets": { + "composite": { + "sources": [ + { "shop": { "terms": { "field": "shop" } } }, + { "product": { "terms": { "field": "product" } } }, + { "date": { "date_histogram": { "field": "timestamp", "calendar_interval": "1d" } } } + ] + } + } + } +} |