use of org.apache.jmeter.report.processor.graph.StatusSeriesSelector in project jmeter by apache.
the class LatencyVSRequestGraphConsumer 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 MedianAggregatorFactory(), new StatusSeriesSelector(), // We ignore Transaction Controller results
new LatencyValueSelector(true), false, false));
return groupInfos;
}
use of org.apache.jmeter.report.processor.graph.StatusSeriesSelector in project jmeter by apache.
the class ResponseTimeVSRequestGraphConsumer 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 MedianAggregatorFactory(), new StatusSeriesSelector(), // We ignore Transaction Controller results
new ElapsedTimeValueSelector(true), false, false));
return groupInfos;
}
Aggregations