Interface TimeMetricSummary
-
- All Known Implementing Classes:
EmbeddedStatsSummary.EmbeddedTimeMetricSummary
public interface TimeMetricSummaryProvides summary data for a set of timing values.- Since:
- 0.37
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Durationmax()Gets the maximum collected value.Durationmean()Gets the mean/average of collected values.Durationmedian()Gets the median of collected values.Durationmin()Gets the minimum collected value.Durationperc90()Gets the 90 percentile of samples times.Durationperc95()Gets the 95 percentile of samples times.Durationperc99()Gets the 99 percentile of samples times.
-
-
-
Method Detail
-
min
Duration min()
Gets the minimum collected value.
-
max
Duration max()
Gets the maximum collected value.
-
mean
Duration mean()
Gets the mean/average of collected values.
-
median
Duration median()
Gets the median of collected values.The median is the same as percentile 50, and is the value for which 50% of the collected values is smaller/greater.
This value might differ from
mean()when distribution of values is not symmetric.
-
perc90
Duration perc90()
Gets the 90 percentile of samples times.90% of samples took less or equal to the returned value.
-
perc95
Duration perc95()
Gets the 95 percentile of samples times.95% of samples took less or equal to the returned value.
-
perc99
Duration perc99()
Gets the 99 percentile of samples times.99% of samples took less or equal to the returned value.
-
-