当我在JMeter中执行测试的次数少于10 Thread Groups时,在Summary Report列Throughput中显示Minutes的结果。

有人能帮帮我吗?
发布于 2017-02-17 09:37:43
根据RateRenderer类源
String unit = "sec";
if (rate < 1.0) {
rate *= 60.0;
unit = "min";
}
if (rate < 1.0) {
rate *= 60.0;
unit = "hour";
}
setText(formatter.format(rate) + "/" + unit);所以:
如果您需要从分钟内获得每秒点击量,只需将该值除以60。
其他选择包括:
https://stackoverflow.com/questions/42292499
复制相似问题