1

How to extract a report for the testing consisting of the below model on the distributed testing environment.

  • Master(My own machine)

  • 2 slaves machines

  • Thread: jp@gc - Stepping Thread Group

Basically wanted to have a dashboard report.

Prashant Sah
  • 93
  • 1
  • 8

1 Answers1

0

You can generate a dashboard report by running your JMeter test in command-line non-GUI mode from the master node like:

jmeter -n -R slave1,slave2 -t /path/to/testplan.jmx -l /path/to/result.csv -e -o /path/to/dashboard/folder

Once test finishes you can open /path/to/dashboard/folder/index.html file with your favourite web browser and see the metrics and charts.

References:


Please be informed that according to JMeter Best Practices you should always be using the latest version of JMeter so I would recommend switching to JMeter 5.0 (or whatever is the latest version available at JMeter Downloads page) as soon as possible

Dmitri T
  • 159,985
  • 5
  • 83
  • 133