class Elasticsearch::DSL::Search::Aggregations::MovingAvg
Given an ordered series of data, the Moving Average aggregation will slide a window across the data and emit the average value of that window.
@example Passing the options as a Hash
aggregation :the_movavg do moving_avg buckets_path: 'the_sum' end
@example Passing the options as a block
aggregation :the_movavg do moving_avg do buckets_path 'the_sum' model 'holt' window 5 gap_policy 'insert_zero' settings({ alpha: 0.5 }) end end