Created
August 16, 2017 01:43
-
-
Save mpurzynski/f072b0774443e0619022cf936fc25b74 to your computer and use it in GitHub Desktop.
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
| GET events/_search | |
| { | |
| "query": { | |
| "bool": { | |
| "must_not": { | |
| "exists": { | |
| "field": "receivedtimestamp" | |
| } | |
| } | |
| }}, | |
| "aggs": { | |
| "iamsocool": { | |
| "terms": { | |
| "field": "details.purpose", | |
| "size": 100 | |
| } | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment