Interface SummaryPointData
-
- All Superinterfaces:
PointData
- All Known Implementing Classes:
AutoValue_ImmutableSummaryPointData
,ImmutableSummaryPointData
@Immutable public interface SummaryPointData extends PointData
Point data forSummaryData
.- Since:
- 1.14.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
getCount()
Returns the count of measurements.double
getSum()
Returns the sum of measurements.java.util.List<ValueAtQuantile>
getValues()
Returns the list of values at different quantiles in the distribution of measurements.-
Methods inherited from interface io.opentelemetry.sdk.metrics.data.PointData
getAttributes, getEpochNanos, getExemplars, getStartEpochNanos
-
-
-
-
Method Detail
-
getCount
long getCount()
Returns the count of measurements.
-
getSum
double getSum()
Returns the sum of measurements.
-
getValues
java.util.List<ValueAtQuantile> getValues()
Returns the list of values at different quantiles in the distribution of measurements.Note: a quantile 0.0 represents the minimum value in the distribution; a quantile 1.0 represents the maximum value in the distribution.
-
-