public interface TimeMetricSummary
| Modifier and Type | Method and Description |
|---|---|
Duration |
max()
Gets the maximum collected value.
|
Duration |
mean()
Gets the mean/average of collected values.
|
Duration |
median()
Gets the median of collected values.
|
Duration |
min()
Gets the minimum collected value.
|
Duration |
perc90()
Gets the 90 percentile of samples times.
|
Duration |
perc95()
Gets the 95 percentile of samples times.
|
Duration |
perc99()
Gets the 99 percentile of samples times.
|
Duration min()
Duration max()
Duration mean()
Duration median()
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.
Duration perc90()
90% of samples took less or equal to the returned value.
Duration perc95()
95% of samples took less or equal to the returned value.
Duration perc99()
99% of samples took less or equal to the returned value.
Copyright © 2023. All rights reserved.