Created
June 17, 2015 12:56
-
-
Save trekr5/4288e6226f3bc0fbcf47 to your computer and use it in GitHub Desktop.
es query
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
body: { | |
"query"=> { | |
"filtered"=> { | |
"filter"=> { | |
"bool"=> { | |
"must"=> [ | |
{"term"=> {"status"=> 500}}, | |
{"term"=> {"type"=> "iis6"}}, | |
"range"=> { | |
"@timestamp"=> { | |
"gt"=> "now-2h" | |
} | |
} | |
] | |
} | |
} | |
} | |
}, | |
"aggs"=> { | |
"0"=> { | |
"date_histogram"=> { | |
"field"=> "@timestamp", | |
"interval"=> "2h" | |
} | |
} | |
}, | |
"size"=> 0 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment