function IntHistogramDataPoint::getExplicitBounds
explicit_bounds specifies buckets with explicitly defined bounds for values. The boundaries for bucket at index i are: (-infinity, explicit_bounds[i]] for i == 0 (explicit_bounds[i-1], explicit_bounds[i]] for 0 < i < size(explicit_bounds) (explicit_bounds[i-1], +infinity) for i == size(explicit_bounds) The values in the explicit_bounds array must be strictly increasing. Histogram buckets are inclusive of their upper boundary, except the last bucket where the boundary is at infinity. This format is intentionally compatible with the OpenMetrics histogram definition.
Generated from protobuf field <code>repeated double explicit_bounds = 7;</code>
Return value
\Google\Protobuf\Internal\RepeatedField
File
-
vendor/
open-telemetry/ gen-otlp-protobuf/ Opentelemetry/ Proto/ Metrics/ V1/ IntHistogramDataPoint.php, line 336
Class
- IntHistogramDataPoint
- IntHistogramDataPoint is deprecated; use HistogramDataPoint.
Namespace
Opentelemetry\Proto\Metrics\V1Code
public function getExplicitBounds() {
return $this->explicit_bounds;
}