Class EmbeddedStatsSummary.EmbeddedTimeMetricSummary
- java.lang.Object
-
- us.abstracta.jmeter.javadsl.core.engines.EmbeddedStatsSummary.EmbeddedTimeMetricSummary
-
- All Implemented Interfaces:
TimeMetricSummary
- Enclosing class:
- EmbeddedStatsSummary
public static class EmbeddedStatsSummary.EmbeddedTimeMetricSummary extends Object implements TimeMetricSummary
-
-
Constructor Summary
Constructors Constructor Description EmbeddedTimeMetricSummary()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidadd(long val)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
-
add
public void add(long val)
-
min
public Duration min()
Description copied from interface:TimeMetricSummaryGets the minimum collected value.- Specified by:
minin interfaceTimeMetricSummary
-
max
public Duration max()
Description copied from interface:TimeMetricSummaryGets the maximum collected value.- Specified by:
maxin interfaceTimeMetricSummary
-
mean
public Duration mean()
Description copied from interface:TimeMetricSummaryGets the mean/average of collected values.- Specified by:
meanin interfaceTimeMetricSummary
-
median
public Duration median()
Description copied from interface:TimeMetricSummaryGets 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
TimeMetricSummary.mean()when distribution of values is not symmetric.- Specified by:
medianin interfaceTimeMetricSummary
-
perc90
public Duration perc90()
Description copied from interface:TimeMetricSummaryGets the 90 percentile of samples times.90% of samples took less or equal to the returned value.
- Specified by:
perc90in interfaceTimeMetricSummary
-
perc95
public Duration perc95()
Description copied from interface:TimeMetricSummaryGets the 95 percentile of samples times.95% of samples took less or equal to the returned value.
- Specified by:
perc95in interfaceTimeMetricSummary
-
perc99
public Duration perc99()
Description copied from interface:TimeMetricSummaryGets the 99 percentile of samples times.99% of samples took less or equal to the returned value.
- Specified by:
perc99in interfaceTimeMetricSummary
-
-