【发布时间】:2017-01-12 08:56:52
【问题描述】:
我想获取特定时间段内的date_histogram,如何限制日期时间段?我应该使用 extended_bounds 参数吗?例如:我想查询'2016-08-01'和'2016-08-31'之间的date_histogram,时间间隔是天。我用这个表达式查询:
{
"aggs": {
"cf_loan": {
"date_histogram": {
"field": "createDate",
"interval": "day",
"format": "yyyy-MM-dd",
"min_doc_count": 0,
"extended_bounds": {
"min": "2016-08-01",
"max": "2016-08-31"
}
}
}
}
}
但我得到的 date_histogram 不在范围内。
【问题讨论】:
标签: elasticsearch date-histogram