function SummaryDataPoint::setQuantileValues
(Optional) list of values at different quantiles of the distribution calculated from the current snapshot. The quantiles must be strictly increasing.
Generated from protobuf field <code>repeated .opentelemetry.proto.metrics.v1.SummaryDataPoint.ValueAtQuantile quantile_values = 6;</code>
Parameters
\Opentelemetry\Proto\Metrics\V1\SummaryDataPoint\ValueAtQuantile[]|\Google\Protobuf\Internal\RepeatedField $var:
Return value
$this
File
-
vendor/
open-telemetry/ gen-otlp-protobuf/ Opentelemetry/ Proto/ Metrics/ V1/ SummaryDataPoint.php, line 299
Class
- SummaryDataPoint
- SummaryDataPoint is a single data point in a timeseries that describes the time-varying values of a Summary metric.
Namespace
Opentelemetry\Proto\Metrics\V1Code
public function setQuantileValues($var) {
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Opentelemetry\Proto\Metrics\V1\SummaryDataPoint\ValueAtQuantile::class);
$this->quantile_values = $arr;
return $this;
}