Skip to content

Instantly share code, notes, and snippets.

@trekr5
Created June 17, 2015 12:56
Show Gist options
  • Save trekr5/4288e6226f3bc0fbcf47 to your computer and use it in GitHub Desktop.
Save trekr5/4288e6226f3bc0fbcf47 to your computer and use it in GitHub Desktop.
es query
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