Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
日時フィールドから集計情報を取得しようとしています:
全てに感謝。
集計formatのパラメーターを使用して、その中のフィールドのみを選択できます。集計は次のようになりますdate-histogrammonth
format
date-histogram
month
{ "aggs": { "documents_by_month": { "date_histogram": { "field": "date", "interval": "1M", "format": "MM" }, "aggs": { "documents": { //... your sub aggregation } } } } }