Created
August 6, 2014 21:58
-
-
Save rpetre/29a77df40a3b844c38ae to your computer and use it in GitHub Desktop.
Example ES filter search. If I remove the "raw" part, no results are found.
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
| { | |
| "facets": { | |
| "map": { | |
| "terms": { | |
| "field": "geoip.country_code2.raw", | |
| "size": 100, | |
| "exclude": [] | |
| }, | |
| "facet_filter": { | |
| "fquery": { | |
| "query": { | |
| "filtered": { | |
| "filter": { | |
| "bool": { | |
| "must": [ | |
| { | |
| "terms": { | |
| "geoip.country_code2.raw": [ | |
| "US" | |
| ] | |
| } | |
| }, | |
| { | |
| "range": { | |
| "@timestamp": { | |
| "from": 1407354889752, | |
| "to": 1407356007765 | |
| } | |
| } | |
| } | |
| ] | |
| } | |
| } | |
| } | |
| } | |
| } | |
| } | |
| } | |
| }, | |
| "size": 0 | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment