Interface HistogramData
- All Superinterfaces:
Data<HistogramPointData>
Data for a
MetricDataType.HISTOGRAM metric.- Since:
- 1.14.0
-
Method Summary
Modifier and TypeMethodDescriptionstatic HistogramDatacreate(AggregationTemporality temporality, Collection<HistogramPointData> points) Create a record.Returns the histogramAggregationTemporality.Returns the dataPointDatas for this metric.
-
Method Details
-
create
static HistogramData create(AggregationTemporality temporality, Collection<HistogramPointData> points) Create a record.- Since:
- 1.50.0
-
getAggregationTemporality
AggregationTemporality getAggregationTemporality()Returns the histogramAggregationTemporality. -
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.
-