Skip to content

Instantly share code, notes, and snippets.

@ewr
Last active August 29, 2015 14:24
Show Gist options
  • Save ewr/5e79dda66d630ed44e04 to your computer and use it in GitHub Desktop.
Save ewr/5e79dda66d630ed44e04 to your computer and use it in GitHub Desktop.
ES Podcast Metrics Query
{
"query":{
"constant_score":{
"filter":{
"and":[
{"term":{
"nginx_host.raw":"media.scpr.org"
}},
{"terms":{
"qvia":["podcast"]
}},
{"range":{
"bytes_sent":{
"gte":8192
}
}},
{"range":{
"@timestamp":{
"gte":"2015-07-01T07:00",
"lt":"2015-07-02T07:00"
}
}},
{"not":{
"terms":{
"clientip.raw":[
"217.156.156.69"
]
}
}}
]
}
}
},
"size":0,
"aggs":{
"show":{
"terms":{
"field":"qcontext.raw",
"size":20
},
"aggs":{
"sessions":{
"cardinality":{
"field":"quuid.raw",
"precision_threshold":100
}
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment