diff options
author | Bryan Newbold <bnewbold@archive.org> | 2020-12-17 12:13:02 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2020-12-17 12:13:02 -0800 |
commit | ea372f042788f61a53ebbca3486090cc8577a20a (patch) | |
tree | e143999bda29ada7eb045798183f763dccc9887b /tests | |
parent | 26dd0d0ad8cc9ce29a3db6dd35b800654ff393ae (diff) | |
download | es-public-proxy-ea372f042788f61a53ebbca3486090cc8577a20a.tar.gz es-public-proxy-ea372f042788f61a53ebbca3486090cc8577a20a.zip |
add support for 'filters' aggregation
Diffstat (limited to 'tests')
-rw-r--r-- | tests/files/search/GET_search_agg_filters.txt | 14 | ||||
-rw-r--r-- | tests/files/search/GET_search_agg_filters_anon.txt | 14 | ||||
-rw-r--r-- | tests/files/search/GET_search_agg_filters_other.txt | 15 |
3 files changed, 43 insertions, 0 deletions
diff --git a/tests/files/search/GET_search_agg_filters.txt b/tests/files/search/GET_search_agg_filters.txt new file mode 100644 index 0000000..74b2976 --- /dev/null +++ b/tests/files/search/GET_search_agg_filters.txt @@ -0,0 +1,14 @@ +GET /logs/_search +{ + "size": 0, + "aggs" : { + "messages" : { + "filters" : { + "filters" : { + "errors" : { "match" : { "body" : "error" }}, + "warnings" : { "match" : { "body" : "warning" }} + } + } + } + } +} diff --git a/tests/files/search/GET_search_agg_filters_anon.txt b/tests/files/search/GET_search_agg_filters_anon.txt new file mode 100644 index 0000000..baa550d --- /dev/null +++ b/tests/files/search/GET_search_agg_filters_anon.txt @@ -0,0 +1,14 @@ +GET /logs/_search +{ + "size": 0, + "aggs" : { + "messages" : { + "filters" : { + "filters" : [ + { "match" : { "body" : "error" }}, + { "match" : { "body" : "warning" }} + ] + } + } + } +} diff --git a/tests/files/search/GET_search_agg_filters_other.txt b/tests/files/search/GET_search_agg_filters_other.txt new file mode 100644 index 0000000..dd54e48 --- /dev/null +++ b/tests/files/search/GET_search_agg_filters_other.txt @@ -0,0 +1,15 @@ +GET /logs/_search +{ + "size": 0, + "aggs" : { + "messages" : { + "filters" : { + "other_bucket_key": "other_messages", + "filters" : { + "errors" : { "match" : { "body" : "error" }}, + "warnings" : { "match" : { "body" : "warning" }} + } + } + } + } +} |