freemarker.analyticsRequest.ftl Maven / Gradle / Ivy
<#ftl output_format="JSON">
{
"size":0,
"query":{
"bool":{
"filter":[
{
"term":{
"api":"${api}"
}
},
{
"range":{
"@timestamp":{
"from":${from},
"to":${to},
"include_lower":true,
"include_upper":true
}
}
}
]
}
},
"aggregations":{
"by_date":{
"date_histogram":{
"field":"@timestamp",
"interval":"${interval}",
"min_doc_count":0,
"extended_bounds":{
"min":${from},
"max":${to}
}
},
"aggregations":{
"by_application":{
"terms":{
"field":"application"
}
}
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy