Created
October 23, 2014 18:20
-
-
Save fedesilva/3ec8c8318eaf62381c96 to your computer and use it in GitHub Desktop.
aggregations
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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