Package com.ibm.websphere.monitor.jmx
Class StatisticsMeter
- java.lang.Object
- 
- com.ibm.websphere.monitor.jmx.Meter
- 
- com.ibm.websphere.monitor.jmx.StatisticsMeter
 
 
- 
 public class StatisticsMeter extends Meter A meter that maintains distribution statistics about the data added to the meter.
- 
- 
Constructor SummaryConstructors Constructor Description StatisticsMeter()Default constructor.StatisticsMeter(long minimumValue, long maximumValue, long count, double mean, double variance, double standardDeviation, double total, StatisticsReading reading, java.lang.String description, java.lang.String unit)Constructor used during construction of proxy objects for MXBeans.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description longgetCount()Get the number of data points that have been added to this meter.longgetMaximumValue()Get the maximum data point value added to this meter.doublegetMean()Get the mean or average of the data points added to this meter.longgetMinimumValue()Get the minimum data point value added to this meter.StatisticsReadinggetReading()doublegetStandardDeviation()Get the standard deviation of the data points added to this meter.doublegetTotal()Get the total or sum of the data points added to this meter.doublegetVariance()Get the variance of the data points added to this meter.- 
Methods inherited from class com.ibm.websphere.monitor.jmx.MetergetDescription, getUnit, setDescription, setUnit
 
- 
 
- 
- 
- 
Constructor Detail- 
StatisticsMeterpublic StatisticsMeter() Default constructor.
 - 
StatisticsMeter@ConstructorProperties({"minimumValue","maximumValue","count","mean","variance","standardDeviation","total","reading","description","unit"}) public StatisticsMeter(long minimumValue, long maximumValue, long count, double mean, double variance, double standardDeviation, double total, StatisticsReading reading, java.lang.String description, java.lang.String unit)Constructor used during construction of proxy objects for MXBeans.
 
- 
 - 
Method Detail- 
getMinimumValuepublic long getMinimumValue() Get the minimum data point value added to this meter.- Returns:
- the minimum data point added to the meter or 0 if no data points have been added
 
 - 
getMaximumValuepublic long getMaximumValue() Get the maximum data point value added to this meter.- Returns:
- the maximum data point added to the meter or 0 if no data points have been added
 
 - 
getTotalpublic double getTotal() Get the total or sum of the data points added to this meter.- Returns:
- the total or sum of the data points added to this meter
 
 - 
getMeanpublic double getMean() Get the mean or average of the data points added to this meter.- Returns:
- the mean or average of the data points added to this meter
 
 - 
getVariancepublic double getVariance() Get the variance of the data points added to this meter.- Returns:
- the variance of the data added to this meter
 
 - 
getStandardDeviationpublic double getStandardDeviation() Get the standard deviation of the data points added to this meter.- Returns:
- the standard deviation of the data added to this meter
 
 - 
getCountpublic long getCount() Get the number of data points that have been added to this meter.- Returns:
- the number of data points added to this meter
 
 - 
getReadingpublic StatisticsReading getReading() - Returns:
- a snapshot of distribution statistics of the meter
 
 
- 
 
-