@ThingworxExtensionApiClass(since={8,3}) public interface IStatisticSnapshot<V,Q>
Modifier and Type | Method and Description |
---|---|
V |
max()
Returns the maximum value passed into the metric. |
Q |
mean()
Returns the average value observed by the metric. |
V |
min()
Returns the minimum value passed into the metric. |
Q |
percentile50()
Returns the 50th percentile observed by the metric. |
Q |
percentile75()
Returns the 75th percentile observed by the metric. |
Q |
percentile80()
Returns the 80th percentile observed by the metric. |
Q |
percentile90()
Returns the 90th percentile observed by the metric. |
Q |
percentile95()
Returns the 95th percentile observed by the metric. |
Q |
percentile99_9()
Returns the 99.9th percentile observed by the metric. |
Q |
percentile99()
Returns the 99th percentile observed by the metric. |
Q |
stddev()
Returns the standard deviation observed by the metric. |
@ThingworxExtensionApiMethod(since={8,3}) V min()
@ThingworxExtensionApiMethod(since={8,3}) Q mean()
@ThingworxExtensionApiMethod(since={8,3}) V max()
@ThingworxExtensionApiMethod(since={8,3}) Q stddev()
@ThingworxExtensionApiMethod(since={8,3}) Q percentile50()
@ThingworxExtensionApiMethod(since={8,3}) Q percentile75()
@ThingworxExtensionApiMethod(since={8,3}) Q percentile80()
@ThingworxExtensionApiMethod(since={8,3}) Q percentile90()
@ThingworxExtensionApiMethod(since={8,3}) Q percentile95()
@ThingworxExtensionApiMethod(since={8,3}) Q percentile99()
@ThingworxExtensionApiMethod(since={8,3}) Q percentile99_9()