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