Lines Matching defs:bucketsPath
102 public function sum_bucket(string $name, ?string $bucketsPath = null): SumBucket
104 return new SumBucket($name, $bucketsPath);
122 public function avg_bucket(string $name, ?string $bucketsPath = null): AvgBucket
124 return new AvgBucket($name, $bucketsPath);
140 public function stats_bucket(string $name, ?string $bucketsPath = null): StatsBucket
142 return new StatsBucket($name, $bucketsPath);
184 * @param string|null $bucketsPath the field on which to perform this aggregation
186 public function percentiles_bucket(string $name, ?string $bucketsPath = null): PercentilesBucket
188 return new PercentilesBucket($name, $bucketsPath);
204 public function cumulative_sum(string $name, string $bucketsPath): CumulativeSum
206 return new CumulativeSum($name, $bucketsPath);
444 public function bucket_script(string $name, ?array $bucketsPath = null, ?string $script = null): BucketScript
446 return new BucketScript($name, $bucketsPath, $script);
454 public function serial_diff(string $name, ?string $bucketsPath = null): SerialDiff
456 return new SerialDiff($name, $bucketsPath);
482 public function derivative(string $name, ?string $bucketsPath = null): Derivative
484 return new Derivative($name, $bucketsPath);
522 public function normalize(string $name, ?string $bucketsPath = null, ?string $method = null): NormalizeAggregation
524 return new NormalizeAggregation($name, $bucketsPath, $method);