UNPKG

@jmaitrehenry/elastic-builder

Version:

A JavaScript implementation of the elasticsearch Query DSL

48 lines (43 loc) 1.72 kB
'use strict'; const PipelineAggregationBase = require('./pipeline-aggregation-base'); const ES_REF_URL = 'https://www.elastic.co/guide/en/elasticsearch/reference/current/search-aggregations-pipeline-max-bucket-aggregation.html'; /** * A sibling pipeline aggregation which identifies the bucket(s) with * the maximum value of a specified metric in a sibling aggregation and * outputs both the value and the key(s) of the bucket(s). The specified * metric must be numeric and the sibling aggregation must be a multi-bucket * aggregation. * * [Elasticsearch reference](https://www.elastic.co/guide/en/elasticsearch/reference/current/search-aggregations-pipeline-max-bucket-aggregation.html) * * @example * const reqBody = esb.requestBodySearch() * .agg( * esb.dateHistogramAggregation('sales_per_month', 'date') * .interval('month') * .agg(esb.sumAggregation('sales', 'price')) * ) * .agg( * // Metric embedded in sibling aggregation * // Get the maximum value of `sales` aggregation in * // `sales_per_month` histogram * esb.maxBucketAggregation( * 'max_monthly_sales', * 'sales_per_month>sales' * ) * ) * .size(0); * * @param {string} name The name which will be used to refer to this aggregation. * @param {string=} bucketsPath The relative path of metric to aggregate over * * @extends PipelineAggregationBase */ class MaxBucketAggregation extends PipelineAggregationBase { // eslint-disable-next-line require-jsdoc constructor(name, bucketsPath) { super(name, 'max_bucket', ES_REF_URL, bucketsPath); } } module.exports = MaxBucketAggregation;