use of org.apache.jmeter.report.processor.graph.NameSeriesSelector in project jmeter by apache.
the class TimeVSThreadGraphConsumer 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 MeanAggregatorFactory(), new NameSeriesSelector(), // We include Transaction Controller results
new ElapsedTimeValueSelector(false), false, true));
return groupInfos;
}
use of org.apache.jmeter.report.processor.graph.NameSeriesSelector in project jmeter by apache.
the class ResponseTimeOverTimeGraphConsumer 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 MeanAggregatorFactory(), new NameSeriesSelector(), // We include Transaction Controller results
new ElapsedTimeValueSelector(false), false, false));
return groupInfos;
}
use of org.apache.jmeter.report.processor.graph.NameSeriesSelector in project jmeter by apache.
the class ResponseTimePercentilesGraphConsumer 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 SumAggregatorFactory(), new NameSeriesSelector(), // We include Transaction Controller results
new CountValueSelector(false), false, false));
return groupInfos;
}
use of org.apache.jmeter.report.processor.graph.NameSeriesSelector in project jmeter by apache.
the class ConnectTimeOverTimeGraphConsumer method createGroupInfos.
/*
* (non-Javadoc)
*
* @see org.apache.jmeter.report.csv.processor.impl.AbstractGraphConsumer#
* createGroupInfos()
*/
@Override
protected Map<String, GroupInfo> createGroupInfos() {
if (!CONNECT_TIME_SAVED) {
return Collections.emptyMap();
}
HashMap<String, GroupInfo> groupInfos = new HashMap<>();
groupInfos.put(AbstractGraphConsumer.DEFAULT_GROUP, new GroupInfo(new MeanAggregatorFactory(), new NameSeriesSelector(), // We ignore Transaction Controller results
new ConnectTimeValueSelector(false), false, false));
return groupInfos;
}
use of org.apache.jmeter.report.processor.graph.NameSeriesSelector in project jmeter by apache.
the class ResponseTimeDistributionGraphConsumer 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 SumAggregatorFactory(), new NameSeriesSelector(), // We include Transaction Controller results
new CountValueSelector(false), false, false));
return groupInfos;
}
Aggregations