Skip to content

Instantly share code, notes, and snippets.

@trekr5
Last active August 29, 2015 14:23
Show Gist options
  • Save trekr5/dfed6dc7471888f1b2d4 to your computer and use it in GitHub Desktop.
Save trekr5/dfed6dc7471888f1b2d4 to your computer and use it in GitHub Desktop.
my es query
{
"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
}
@trekr5
Copy link
Author

trekr5 commented Jun 15, 2015

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
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment