function ValueAtQuantile::setValue
The value at the given quantile of a distribution. Quantile values must NOT be negative.
Generated from protobuf field <code>double value = 2;</code>
Parameters
float $var:
Return value
$this
File
-
vendor/
open-telemetry/ gen-otlp-protobuf/ Opentelemetry/ Proto/ Metrics/ V1/ SummaryDataPoint/ ValueAtQuantile.php, line 105
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 setValue($var) {
GPBUtil::checkDouble($var);
$this->value = $var;
return $this;
}