Class DoubleHistogramData
- java.lang.Object
-
- io.opentelemetry.sdk.metrics.data.DoubleHistogramData
-
@Immutable public abstract class DoubleHistogramData extends Object
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static DoubleHistogramDatacreate(AggregationTemporality temporality, Collection<DoubleHistogramPointData> points)abstract AggregationTemporalitygetAggregationTemporality()Returns theAggregationTemporalityof this metric,abstract Collection<DoubleHistogramPointData>getPoints()
-
-
-
Method Detail
-
create
public static DoubleHistogramData create(AggregationTemporality temporality, Collection<DoubleHistogramPointData> points)
-
getAggregationTemporality
public abstract 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
public abstract Collection<DoubleHistogramPointData> getPoints()
-
-