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