Interface ExponentialHistogramData
- All Superinterfaces:
Data<ExponentialHistogramPointData>
- All Known Implementing Classes:
AutoValue_ImmutableExponentialHistogramData
,ImmutableExponentialHistogramData
A base-2 exponential histogram metric point, as defined by the OpenTelemetry Exponential
Histogram specification.
Note: This is called "ExponentialHistogramData" to reflect which primitives are used to record it, however "ExponentialHistogram" is the equivalent OTLP type.
- Since:
- 1.23.0
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionReturns theAggregationTemporality
of this metric.Returns the collection ofExponentialHistogramPointData
for this histogram.
-
Method Details
-
getAggregationTemporality
AggregationTemporality getAggregationTemporality()Returns theAggregationTemporality
of this metric.AggregationTemporality describes if the aggregator reports delta changes since last report time, or cumulative changes since a fixed start time.
- Returns:
- the
AggregationTemporality
of this metric
-
getPoints
Collection<ExponentialHistogramPointData> getPoints()Returns the collection ofExponentialHistogramPointData
for this histogram.- Specified by:
getPoints
in interfaceData<ExponentialHistogramPointData>
- Returns:
- the collection of data points for this histogram.
-