use of org.apache.jmeter.report.processor.graph.CodeSeriesSelector in project jmeter by apache.
the class CodesPerSecondGraphConsumer method createGroupInfos.
/*
* (non-Javadoc)
*
* @see org.apache.jmeter.report.csv.processor.impl.AbstractGraphConsumer#
* createGroupInfos()
*/
@Override
protected Map<String, GroupInfo> createGroupInfos() {
HashMap<String, GroupInfo> groupInfos = new HashMap<>(1);
groupInfos.put(AbstractGraphConsumer.DEFAULT_GROUP, new GroupInfo(new TimeRateAggregatorFactory(), new CodeSeriesSelector(), // We ignore Transaction Controller results
new CountValueSelector(true), false, false));
return groupInfos;
}
Aggregations