elastic-builder
Version:
A JavaScript implementation of the elasticsearch Query DSL
43 lines (38 loc) • 1.49 kB
JavaScript
;
const PipelineAggregationBase = require('./pipeline-aggregation-base');
const ES_REF_URL =
'https://www.elastic.co/guide/en/elasticsearch/reference/current/search-aggregations-pipeline-avg-bucket-aggregation.html';
/**
* A sibling pipeline aggregation which calculates the (mean) average value
* of a specified metric in a sibling aggregation. 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-avg-bucket-aggregation.html)
*
* @example
* const reqBody = esb.requestBodySearch()
* .agg(
* esb.dateHistogramAggregation('sales_per_month', 'date')
* .interval('month')
* .agg(esb.sumAggregation('sales', 'price'))
* )
* .agg(
* esb.avgBucketAggregation(
* 'avg_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 AvgBucketAggregation extends PipelineAggregationBase {
// eslint-disable-next-line require-jsdoc
constructor(name, bucketsPath) {
super(name, 'avg_bucket', ES_REF_URL, bucketsPath);
}
}
module.exports = AvgBucketAggregation;