Reputation: 385
I am running a test on jmeter (200 threads; 3000 ramp up period) and in the middle of the test the jmeter gui suddenly froze (the test is still running).
I just want to know if there is any possibility that I could still get the summary result of the finished test run on jmeter considering the fact that the gui froze and I could not get the summary results in it?
Upvotes: 0
Views: 1421
Reputation: 168082
It is: don't use JMeter GUI for load test execution, GUI mode is for test development and debugging. Once you are happy with your test behaviour:
Run your test in non-GUI mode like:
jmeter -n -t /path/to/testplan.jmx -l /path/to/results.jtl
When test finishes you will be able to:
results.jtl
file using the Listener of your choiceGenerate HTML Reporting Dashboard like:
jmeter -g /path/to/results.jtl -o /path/to/html/report/folder
See 9 Easy Solutions for a JMeter Load Test “Out of Memory” Failure article for compilation of JMeter performance tuning advices.
Upvotes: 1