Lines Matching refs:bucketsPath
102 public function sum_bucket(string $name, ?string $bucketsPath = null): SumBucket argument
104 return new SumBucket($name, $bucketsPath);
122 public function avg_bucket(string $name, ?string $bucketsPath = null): AvgBucket argument
124 return new AvgBucket($name, $bucketsPath);
140 public function stats_bucket(string $name, ?string $bucketsPath = null): StatsBucket argument
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 argument
188 return new PercentilesBucket($name, $bucketsPath);
204 public function cumulative_sum(string $name, string $bucketsPath): CumulativeSum argument
206 return new CumulativeSum($name, $bucketsPath);
444 …public function bucket_script(string $name, ?array $bucketsPath = null, ?string $script = null): B… argument
446 return new BucketScript($name, $bucketsPath, $script);
454 public function serial_diff(string $name, ?string $bucketsPath = null): SerialDiff argument
456 return new SerialDiff($name, $bucketsPath);
482 public function derivative(string $name, ?string $bucketsPath = null): Derivative argument
484 return new Derivative($name, $bucketsPath);
522 …public function normalize(string $name, ?string $bucketsPath = null, ?string $method = null): Norm… argument
524 return new NormalizeAggregation($name, $bucketsPath, $method);