ElasticSearch 中两个日期字段之间的时间直方图

问题描述 投票:0回答:0

我在 ElasticSearch 数据库中有记录,其中每条记录都有 CreatedAt 和 UpdatedAt 字段。我想生成 UpdatedAt 和 CreatedAt 字段值之间持续时间的直方图。我该怎么做?

{
    “Id”: 6002,
    “customerName”: MX, 
    “CreatedAt”: "2022-12-01T10:15:32.133Z",
    “fieldId”: "2022-12-10T17:25:45.133Z",
    “fieldType”: typeC,
    “fieldId”: 1003
   
} 
elasticsearch histogram aggregation date-histogram
© www.soinside.com 2019 - 2024. All rights reserved.