更改Elasticsearch date_histogram聚合中的键值

时间:2018-11-07 09:04:06

标签: elasticsearch

我需要对一组数据进行elasticsearch date_histogram聚合。问题是我需要使聚合的关键点成为每个时间间隔的终点。

示例:假设我在10-02-2018和11-02-2018之间的总价值为20。为此,输出键将为: 10-02-2018 ,数据将为 20 。我只希望密钥为 11-02-2018 。有什么办法可以做到这一点?

示例代码:

"aggs": {
          "usage": {
            "aggs": {
              "sumdata": {
                "sum": {
                  "field": "data"
                }
              }
            },
            "date_histogram": {
              "field": "time",
              "interval": "day"
            }
          }
        }

0 个答案:

没有答案