Interface DoublePointData
-
- All Superinterfaces:
PointData
- All Known Implementing Classes:
AutoValue_ImmutableDoublePointData
,ImmutableDoublePointData
,MutableDoublePointData
public interface DoublePointData extends PointData
Point data with adouble
aggregation value.- Since:
- 1.14.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<DoubleExemplarData>
getExemplars()
List of exemplars collected from measurements aggregated into this point.double
getValue()
Returns the value of the data point.-
Methods inherited from interface io.opentelemetry.sdk.metrics.data.PointData
getAttributes, getEpochNanos, getStartEpochNanos
-
-
-
-
Method Detail
-
getValue
double getValue()
Returns the value of the data point.
-
getExemplars
java.util.List<DoubleExemplarData> getExemplars()
List of exemplars collected from measurements aggregated into this point.- Specified by:
getExemplars
in interfacePointData
-
-