Interface HistogramData
- All Superinterfaces:
Data<HistogramPointData>
A histogram metric recording.
See: https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/metrics/datamodel.md#histogram
-
Method Summary
Modifier and TypeMethodDescriptionReturns theAggregationTemporalityof this metric,Returns the dataPointDatas for this metric.
-
Method Details
-
getAggregationTemporality
AggregationTemporality getAggregationTemporality()Returns theAggregationTemporalityof this metric,AggregationTemporality describes if the aggregator reports delta changes since last report time, or cumulative changes since a fixed start time.
- Returns:
- the
AggregationTemporalityof this metric
-
getPoints
Collection<HistogramPointData> getPoints()Description copied from interface:DataReturns the dataPointDatas for this metric.- Specified by:
getPointsin interfaceData<HistogramPointData>- Returns:
- the data
PointDatas for this metric, or emptyCollectionif no points.
-