Class: OpenSearch::DSL::Search::Aggregations::SumBucket

Inherits:
Object
  • Object
show all
Includes:
BaseAggregationComponent
Defined in:
lib/opensearch/dsl/search/aggregations/pipeline/sum_bucket.rb

Overview

A sibling pipeline aggregation which calculates the sum across all bucket of a specified metric in a sibling aggregation.

Examples:

Passing the options as a Hash


aggregation :sum_monthly_sales do
  sum_bucket buckets_path: 'sales_per_month>sales'
end

Passing the options as a block


aggregation :sum_monthly_sales do
  sum_bucket do
    buckets_path 'sales_per_month>sales'
  end
end

Method Summary

Methods included from BaseAggregationComponent

included