Enum AggregationMethodDescriptor.RangeAggregationMethod

    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      AVG
      Average value over the time range.
      AVG_AVG
      First average the value in each time period, then find the average of the averages.
      AVG_SUM
      First sum the value in each time period, then average the sums.
      LAST
      No aggregation; display the last value in the time range.
      MAX
      Maximum value over the time range.
      MAX_SUM
      First sum the value in each time period, then find the maximum of the sums.
      MIN
      Minimum value over the time range.
      MIN_SUM
      First sum the value in each time period, then find the minimum of the sums.
      NONE
      No aggregation; do not display the metric.
      SUM
      Summation of the value over the time range.