aboutsummaryrefslogtreecommitdiffstats
path: root/tests/files/search/GET_search_agg_filters_other.txt
blob: dd54e48b51912417aad1bb94c4454197f132b041 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
GET /logs/_search
{
  "size": 0,
  "aggs" : {
    "messages" : {
      "filters" : {
        "other_bucket_key": "other_messages",
        "filters" : {
          "errors" :   { "match" : { "body" : "error"   }},
          "warnings" : { "match" : { "body" : "warning" }}
        }
      }
    }
  }
}