Package com.thingworx.metrics
Interface IStatisticSnapshot<V,Q>
Provides access to a read-only immutable snapshot of statistical data from a metric.
-
Method Summary
Modifier and TypeMethodDescriptionmax()
Returns the maximum value passed into the metric.mean()
Returns the average value observed by the metric.min()
Returns the minimum value passed into the metric.
Returns the 50th percentile observed by the metric.
Returns the 75th percentile observed by the metric.
Returns the 80th percentile observed by the metric.
Returns the 90th percentile observed by the metric.
Returns the 95th percentile observed by the metric.
Returns the 99th percentile observed by the metric.
Returns the 99.9th percentile observed by the metric.stddev()
Returns the standard deviation observed by the metric.
-
Method Details
-
min
Returns the minimum value passed into the metric.- Returns:
- the minimum value observed
-
mean
Returns the average value observed by the metric.- Returns:
- the average value observed
-
max
Returns the maximum value passed into the metric.- Returns:
- the maximum value observed
-
stddev
Returns the standard deviation observed by the metric.- Returns:
- the standard deviation
-
percentile50
Returns the 50th percentile observed by the metric.- Returns:
- the 50th percentile value
-
percentile75
Returns the 75th percentile observed by the metric.- Returns:
- the 75th percentile period
-
percentile80
Returns the 80th percentile observed by the metric.- Returns:
- the 80th percentile period
-
percentile90
Returns the 90th percentile observed by the metric.- Returns:
- the 90th percentile period
-
percentile95
Returns the 95th percentile observed by the metric.- Returns:
- the 95th percentile period
-
percentile99
Returns the 99th percentile observed by the metric.- Returns:
- the 99th percentile period
-
percentile99_9
Returns the 99.9th percentile observed by the metric.- Returns:
- the 99.9th percentile period
-