1

I have done load testing with jmeter and my jmeter version is 5.0.

Can you please help me how to generate the reports of the results.

madhuri
  • 63
  • 8
  • a similar issue appears here https://stackoverflow.com/questions/38263768/how-do-i-generate-a-dashboard-report-in-jmeter – Abhishek D K Jan 17 '19 at 06:21

2 Answers2

2

Given you executed JMeter in command-line non-GUI mode like:

jmeter -n -t /path/to/test.jmx -l /path/to/result.csv

You can now generate the HTML Reporting Dashboard from the result.csv file as follows:

jmeter -g /path/to/result.csv -o /path/to/dashboard/folder

The folder where you will be generating the report to must be empty.

Dmitri T
  • 159,985
  • 5
  • 83
  • 133
  • I have done testing in GUI mode – madhuri Jan 17 '19 at 06:36
  • There is no way you can generate the dashboard out of the GUI run (unless you configure a [Listener](http://jmeter.apache.org/usermanual/component_reference.html#listeners) to store results into a CSV file). Be aware that JMeter GUI is for tests development and debugging only, you should be running load tests in non-GUI mode with all listeners disabled. See [9 Easy Solutions for a JMeter Load Test “Out of Memory” Failure](https://www.blazemeter.com/blog/9-easy-solutions-jmeter-load-test-%E2%80%9Cout-memory%E2%80%9D-failure) article for some JMeter Best Practices – Dmitri T Jan 17 '19 at 08:07
0

See this new blog (16th january 2019) which explains the while process:

Besides, refer to the reference documentation :

UBIK LOAD PACK
  • 33,980
  • 5
  • 71
  • 116