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

freemarker.count.ftl Maven / Gradle / Ivy

There is a newer version: 1.14.0
Show newest version
{
  "size": 0,
  "query": {
    "bool": {
      "filter": [
<#if query.query()?has_content>
        {
          "query_string": {
            "query": "${query.query().filter()}"
          }
        },

<#if query.root()?has_content>
        {
          "term": {
            "${query.root().field()}": "${query.root().id()}"
          }
        },

        {
          "range": {
            "@timestamp": {
              "from": ${query.timeRange().range().from()},
              "to": ${query.timeRange().range().to()},
              "include_lower": true,
              "include_upper": true
            }
          }
        }
      ]
    }
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy