Interface HistogramData
-
- All Superinterfaces:
Data<HistogramPointData>
- All Known Implementing Classes:
AutoValue_ImmutableHistogramData,ImmutableHistogramData
@Immutable public interface HistogramData extends Data<HistogramPointData>
Data for aMetricDataType.HISTOGRAMmetric.- Since:
- 1.14.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AggregationTemporalitygetAggregationTemporality()Returns the histogramAggregationTemporality.java.util.Collection<HistogramPointData>getPoints()Returns the dataPointDatas for this metric.
-
-
-
Method Detail
-
getAggregationTemporality
AggregationTemporality getAggregationTemporality()
Returns the histogramAggregationTemporality.
-
getPoints
java.util.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.
-
-