我正在尝试从日期时间字段中获取汇总信息:
谢谢大家。
答案 0 :(得分:1)
您可以使用format
聚合的date-histogram
参数,并在其中仅选择month
字段。您的聚合看起来像
{
"aggs": {
"documents_by_month": {
"date_histogram": {
"field": "date",
"interval": "1M",
"format": "MM"
},
"aggs": {
"documents": {
//... your sub aggregation
}
}
}
}
}