Class MetricData.SummaryPoint

  • Enclosing class:
    MetricData

    @Immutable
    public abstract static class MetricData.SummaryPoint
    extends MetricData.Point
    SummaryPoint is a single data point that summarizes the values in a time series of numeric values.
    • Method Detail

      • getCount

        public abstract long getCount()
        The number of values that are being summarized.
        Returns:
        the number of values that are being summarized.
      • getSum

        public abstract double getSum()
        The sum of all the values that are being summarized.
        Returns:
        the sum of the values that are being summarized.
      • getPercentileValues

        public abstract java.util.List<MetricData.ValueAtPercentile> getPercentileValues()
        Percentile values in the summarization. Note: a percentile 0.0 represents the minimum value in the distribution.
        Returns:
        the percentiles values.