All Downloads are FREE. Search and download functionalities are using the official Maven repository.

freemarker.analyticsRequest.ftl Maven / Gradle / Ivy

There is a newer version: 1.14.0
Show newest version
<#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