com.ibm.websphere.pmi.stat
Interface WSAverageStatistic
All Superinterfaces:
All known subinterfaces:
- public interface WSAverageStatistic
- extends WSStatistic
Method Summary
Modifier and Type | Method and Description |
---|---|
|
getCount()
Returns the number of samples involved in this statistic.
|
|
getMax()
Returns the maximum value of all the samples.
|
|
getMean()
Returns the mean or average (getTotal() divided by getCount()).
|
|
getMin()
Returns the minimum value of all the samples.
|
|
getSumOfSquares()
Returns the sum-of-squares of the values of all the samples.
|
|
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
- long getCount()
Returns the number of samples involved in this statistic.
getTotal
- long getTotal()
Returns the sum of the values of all the samples.
getMean
- double getMean()
Returns the mean or average (getTotal() divided by getCount()).
getMin
- long getMin()
Returns the minimum value of all the samples.
getMax
- long getMax()
Returns the maximum value of all the samples.
getSumOfSquares
- double getSumOfSquares()
Returns the sum-of-squares of the values of all the samples.