function ValueAtQuantile::setQuantile
The quantile of a distribution. Must be in the interval [0.0, 1.0].
Generated from protobuf field <code>double quantile = 1;</code>
Parameters
float $var:
Return value
$this
File
-
vendor/
open-telemetry/ gen-otlp-protobuf/ Opentelemetry/ Proto/ Metrics/ V1/ SummaryDataPoint/ ValueAtQuantile.php, line 77
Class
- ValueAtQuantile
- Represents the value at a given quantile of a distribution. To record Min and Max values following conventions are used:
Namespace
Opentelemetry\Proto\Metrics\V1\SummaryDataPointCode
public function setQuantile($var) {
GPBUtil::checkDouble($var);
$this->quantile = $var;
return $this;
}