com.ibm.websphere.pmi.stat

Interface WSAverageStatistic

All Superinterfaces:
WSStatistic
All known subinterfaces:
WSTimeStatistic

  1. public interface WSAverageStatistic
  2. extends WSStatistic
WebSphere Average statistic to represent a simple average.

Method Summary

Modifier and Type Method and Description
  1. long
getCount()
Returns the number of samples involved in this statistic.
  1. long
getMax()
Returns the maximum value of all the samples.
  1. double
getMean()
Returns the mean or average (getTotal() divided by getCount()).
  1. long
getMin()
Returns the minimum value of all the samples.
  1. double
getSumOfSquares()
Returns the sum-of-squares of the values of all the samples.
  1. long
getTotal()
Returns the sum of the values of all the samples.
Methods inherited from interface com.ibm.websphere.pmi.stat.WSStatistic
combine, copy, delta, getDataInfo, getDescription, getId, getLastSampleTime, getName, getStartTime, getUnit, rateOfChange, resetOnClient, setDataInfo, setDataInfo, toString, toXML, update

Method Detail

getCount

  1. long getCount()
Returns the number of samples involved in this statistic.

getTotal

  1. long getTotal()
Returns the sum of the values of all the samples.

getMean

  1. double getMean()
Returns the mean or average (getTotal() divided by getCount()).

getMin

  1. long getMin()
Returns the minimum value of all the samples.

getMax

  1. long getMax()
Returns the maximum value of all the samples.

getSumOfSquares

  1. double getSumOfSquares()
Returns the sum-of-squares of the values of all the samples.