Created
April 30, 2015 12:36
-
-
Save trekr5/db0b0f577cab10d95257 to your computer and use it in GitHub Desktop.
This file contains 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
curl -XGET 'localhost:9200/logstash-2015.04.30/_search?pretty' -d '{ | |
"facets": { | |
"3": { | |
"date_histogram": { | |
"field": "@timestamp", | |
"interval": "1m" | |
}, | |
"global": true, | |
"facet_filter": { | |
"fquery": { | |
"query": { | |
"filtered": { | |
"query": { | |
"query_string": { | |
"query": "type:iis6 AND status:500" | |
} | |
}, | |
"filter": { | |
"bool": { | |
"must": [ | |
{ | |
"range": { | |
"timestamp": { | |
"from": now-2h, | |
"to": now | |
} | |
} | |
} | |
] | |
} | |
} | |
} | |
} | |
} | |
} | |
} | |
}, | |
"size": 0 | |
} | |
' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment