Last active
August 29, 2015 14:23
-
-
Save trekr5/dfed6dc7471888f1b2d4 to your computer and use it in GitHub Desktop.
my 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
{ | |
"query"=> { | |
"filtered"=> { | |
"filter"=> { | |
"bool"=> { | |
"must"=> [ | |
{"term"=> {status=> 500}}, | |
{"term"=> {"type"=> "iis6"}}, | |
"range"=> { | |
"@timestamp"=> { | |
"gt"=> "now-26h", | |
"lt"=> "now-24h" | |
} | |
} | |
] | |
} | |
} | |
} | |
}, | |
"aggs"=> { | |
"0"=> { | |
"date_histogram"=> { | |
"field"=> "@timestamp", | |
"interval"=> "day" | |
} | |
} | |
}, | |
"size"=> 0 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
body: {
"query"=> {
"filtered"=> {
"filter"=> {
"bool"=> {
"must"=> [
{"term"=> {status=> 500}},
{"term"=> {"type"=> "iis6"}},
"range"=> {
"@timestamp"=> {
"gt"=> "now-26h",
"lt"=> "now-24h"
}
}
]
}
}
}
},
"aggs"=> {
"0"=> {
"date_histogram"=> {
"field"=> "@timestamp",
"interval"=> "day"
}
}
},
"size"=> 0
}