Reputation: 75
When I execute test in JMeter
for less than 10 Thread Groups
, in Summary Report
column Throughput
showing result in Minutes
.
Can anyone please help me
Upvotes: 0
Views: 53
Reputation: 168157
As per RateRenderer class source
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);
So:
If you need to get the throughput in hits per second from minutes - just divide the value by 60.
Other options are:
Upvotes: 1