Class: Elasticsearch::DSL::Search::Aggregations::MinBucket

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

Overview

A sibling pipeline aggregation which identifies the bucket(s) with the minimum value of a specified metric in a sibling aggregation and outputs both the value and the key(s) of the bucket(s).

Examples:

Passing the options as a Hash


aggregation :min_monthly_sales do
  min_bucket buckets_path: 'sales_per_month>sales'
end

Passing the options as a block


aggregation :min_monthly_sales do
  min_bucket do
    buckets_path 'sales_per_month>sales'
  end
end

See Also:

Method Summary

Methods included from BaseAggregationComponent

included