use of org.apache.jmeter.report.processor.MinAggregatorFactory in project jmeter by apache.
the class ResponseTimePercentilesOverTimeGraphConsumer method createMinGroupInfo.
/**
* Creates the group info for min elapsed time
* @return the group info
*/
private GroupInfo createMinGroupInfo() {
StaticSeriesSelector seriesSelector = new StaticSeriesSelector();
seriesSelector.setSeriesName("Min");
return new GroupInfo(new MinAggregatorFactory(), seriesSelector, new SuccessfulElapsedTimeValueSelector(), false, false);
}
Aggregations