Interface SummaryPointData
- All Superinterfaces:
PointData
A single data point that summarizes the values in a time series of numeric values.
-
Method Summary
Methods inherited from interface io.opentelemetry.sdk.metrics.data.PointData
getAttributes, getEpochNanos, getExemplars, getStartEpochNanos
-
Method Details
-
getCount
long getCount()Returns the number of values that are being summarized. -
getSum
double getSum()Returns the sum of all the values that are being summarized. -
getValues
List<ValueAtQuantile> getValues()Returns the values in the summarization. Note: a quantile 0.0 represents the minimum value in the distribution.
-