Searched refs:bucketsPath (Results 1 – 13 of 13) sorted by relevance
| /plugin/elasticsearch/vendor/ruflin/elastica/src/QueryBuilder/DSL/ |
| D | Aggregation.php | 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 [all …]
|
| /plugin/elasticsearch/vendor/ruflin/elastica/src/Aggregation/ |
| D | BucketSelector.php | 14 public function __construct(string $name, ?array $bucketsPath = null, ?string $script = null) argument 18 if (null !== $bucketsPath) { 19 $this->setBucketsPath($bucketsPath); 40 public function setBucketsPath(array $bucketsPath): self argument 42 return $this->setParam('buckets_path', $bucketsPath);
|
| D | BucketScript.php | 16 public function __construct(string $name, ?array $bucketsPath = null, ?string $script = null) argument 20 if (null !== $bucketsPath) { 21 $this->setBucketsPath($bucketsPath); 42 public function setBucketsPath(array $bucketsPath): self argument 44 return $this->setParam('buckets_path', $bucketsPath);
|
| D | SumBucket.php | 17 public function __construct(string $name, ?string $bucketsPath = null) argument 21 if (null !== $bucketsPath) { 22 $this->setBucketsPath($bucketsPath);
|
| D | Derivative.php | 17 public function __construct(string $name, ?string $bucketsPath = null) argument 21 if (null !== $bucketsPath) { 22 $this->setBucketsPath($bucketsPath);
|
| D | StatsBucket.php | 17 public function __construct(string $name, ?string $bucketsPath = null) argument 21 if (null !== $bucketsPath) { 22 $this->setBucketsPath($bucketsPath);
|
| D | AvgBucket.php | 19 public function __construct(string $name, ?string $bucketsPath = null) argument 23 if (null !== $bucketsPath) { 24 $this->setBucketsPath($bucketsPath);
|
| D | PercentilesBucket.php | 18 public function __construct(string $name, ?string $bucketsPath = null) argument 22 if (null !== $bucketsPath) { 23 $this->setBucketsPath($bucketsPath);
|
| D | NormalizeAggregation.php | 16 public function __construct(string $name, ?string $bucketsPath = null, ?string $method = null) argument 20 if (null !== $bucketsPath) { 21 $this->setBucketsPath($bucketsPath);
|
| D | SerialDiff.php | 18 public function __construct(string $name, ?string $bucketsPath = null) argument 22 if (null !== $bucketsPath) { 23 $this->setBucketsPath($bucketsPath);
|
| D | CumulativeSum.php | 14 public function __construct(string $name, string $bucketsPath) argument 18 $this->setBucketsPath($bucketsPath);
|
| D | ExtendedStatsBucket.php | 15 public function __construct(string $name, string $bucketsPath) argument 19 $this->setBucketsPath($bucketsPath);
|
| /plugin/elasticsearch/vendor/ruflin/elastica/src/Aggregation/Traits/ |
| D | BucketsPathTrait.php | 10 public function setBucketsPath(string $bucketsPath): self argument 12 return $this->setParam('buckets_path', $bucketsPath);
|