原先的Interval方法设置DateHistogramInterval 现已改为dateHistogramInterval方法设置。
timeZone 设置时序从原先的timeZone("+08:00") 更改为 放进去一个DateTimeZone 对象DateTimeZone.forID("+08:00")
AggregationBuilders
.dateHistogram(AnalyticsConver.AGG_ALL_RESULT)
.field(timeKey)
.dateHistogramInterval(dateHistogramType.getHistogram())
.format(dateHistogramType.getFormat())
.minDocCount(0L)
.order(Histogram.Order.KEY_DESC)
.timeZone(DateTimeZone.forID("+08:00"));