Skip to content

Instantly share code, notes, and snippets.

@fedesilva
Created October 23, 2014 18:20
Show Gist options
  • Save fedesilva/3ec8c8318eaf62381c96 to your computer and use it in GitHub Desktop.
Save fedesilva/3ec8c8318eaf62381c96 to your computer and use it in GitHub Desktop.
aggregations
POST /logstash-batanga-*/_search?search_type=count
{
"query": {
"filtered": {
"query": {
"match_all": {}
},
"filter": {
"exists": {
"field": "btng.elapsedtime"
}
}
}
},
"aggs": {
"nombre1": {
"terms": {
"field": "btng.eventid"
},
"aggs": {
"device_types": {
"terms": {
"field": "btng.devicetype"
},
"aggs": {
"app_versions": {
"terms": {
"field": "btng.appversion"
}
}
}
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment