累積和集約
親パイプライン集約で、親ヒストグラム(または日付ヒストグラム)集約内の指定されたメトリックの累積和を計算します。指定されたメトリックは数値でなければならず、囲むヒストグラムは min_doc_count
を 0
に設定する必要があります(histogram
集約のデフォルト)。
構文
単独での cumulative_sum
集約は次のようになります:
Js
{
"cumulative_sum": {
"buckets_path": "the_sum"
}
}
パラメータ名 | 説明 | 必須 | デフォルト値 |
---|---|---|---|
buckets_path |
累積和を求めるバケットへのパス(詳細については buckets_path 構文 を参照) |
必須 | |
format |
出力値のための DecimalFormat パターン。指定された場合、フォーマットされた値は集約の value_as_string プロパティに返されます |
オプション | null |
次のスニペットは、月間の sales
の累積和を計算します:
Python
resp = client.search(
index="sales",
size=0,
aggs={
"sales_per_month": {
"date_histogram": {
"field": "date",
"calendar_interval": "month"
},
"aggs": {
"sales": {
"sum": {
"field": "price"
}
},
"cumulative_sales": {
"cumulative_sum": {
"buckets_path": "sales"
}
}
}
}
},
)
print(resp)
Ruby
response = client.search(
index: 'sales',
body: {
size: 0,
aggregations: {
sales_per_month: {
date_histogram: {
field: 'date',
calendar_interval: 'month'
},
aggregations: {
sales: {
sum: {
field: 'price'
}
},
cumulative_sales: {
cumulative_sum: {
buckets_path: 'sales'
}
}
}
}
}
}
)
puts response
Js
const response = await client.search({
index: "sales",
size: 0,
aggs: {
sales_per_month: {
date_histogram: {
field: "date",
calendar_interval: "month",
},
aggs: {
sales: {
sum: {
field: "price",
},
},
cumulative_sales: {
cumulative_sum: {
buckets_path: "sales",
},
},
},
},
},
});
console.log(response);
コンソール
POST /sales/_search
{
"size": 0,
"aggs": {
"sales_per_month": {
"date_histogram": {
"field": "date",
"calendar_interval": "month"
},
"aggs": {
"sales": {
"sum": {
"field": "price"
}
},
"cumulative_sales": {
"cumulative_sum": {
"buckets_path": "sales"
}
}
}
}
}
}
buckets_path はこの累積和集約に sales 集約の出力を累積和に使用するよう指示します |
コンソール-結果
{
"took": 11,
"timed_out": false,
"_shards": ...,
"hits": ...,
"aggregations": {
"sales_per_month": {
"buckets": [
{
"key_as_string": "2015/01/01 00:00:00",
"key": 1420070400000,
"doc_count": 3,
"sales": {
"value": 550.0
},
"cumulative_sales": {
"value": 550.0
}
},
{
"key_as_string": "2015/02/01 00:00:00",
"key": 1422748800000,
"doc_count": 2,
"sales": {
"value": 60.0
},
"cumulative_sales": {
"value": 610.0
}
},
{
"key_as_string": "2015/03/01 00:00:00",
"key": 1425168000000,
"doc_count": 2,
"sales": {
"value": 375.0
},
"cumulative_sales": {
"value": 985.0
}
}
]
}
}
}