Reputation: 111
I am using jmeter
for load and performance testing. I am able to successfully generate summary report by using only one user as load. But, if I want to generate summary report for multiple users (say 100 users), how can I configure jmeter
GUI to generate summary report?
Thanks in advance :)
Upvotes: 1
Views: 8482
Reputation: 564
You have to put the Summary Report controller at the top level, just beside (not inside) the Thread Group. Otherways, its scope becomes a single thread, which is not useful.
Upvotes: 0
Reputation: 168072
JMeter doesn't care about number of users. The only thing to consider: don't use JMeter GUI to perform load test itself.
The easiest approach to use:
Run your test in non-GUI console mode as follows:
jmeter -n -t /path/to/your/test.jmx -l /path/to/test/results.jtl
/path/to/test/results.jtl
Also make sure that you're following other recommendations from JMeter Performance and Tuning Tips guide.
Upvotes: 5