Interface HistogramData
-
- All Superinterfaces:
Data<HistogramPointData>
- All Known Implementing Classes:
AutoValue_ImmutableHistogramData
,ImmutableHistogramData
@Immutable public interface HistogramData extends Data<HistogramPointData>
Data for aMetricDataType.HISTOGRAM
metric.- Since:
- 1.14.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AggregationTemporality
getAggregationTemporality()
Returns the histogramAggregationTemporality
.java.util.Collection<HistogramPointData>
getPoints()
Returns the dataPointData
s for this metric.
-
-
-
Method Detail
-
getAggregationTemporality
AggregationTemporality getAggregationTemporality()
Returns the histogramAggregationTemporality
.
-
getPoints
java.util.Collection<HistogramPointData> getPoints()
Description copied from interface:Data
Returns the dataPointData
s for this metric.- Specified by:
getPoints
in interfaceData<HistogramPointData>
- Returns:
- the data
PointData
s for this metric, or emptyCollection
if no points.
-
-