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