Pravin
Pravin

Reputation: 185

How to generate and view dashboard generated reports in jmeter?

In windows, using the command "jmeter -n -t [test JMX file] -l [test log file] -e -o " to generate the dashboard result doesn't execute and shows the error.

Upvotes: 0

Views: 1003

Answers (2)

Rajesh Om
Rajesh Om

Reputation: 518

Please follow below steps to generate report dashboard instead of using jmeter.log file.

  1. Add Simple Data Writer from Listeners.
  2. Provide your path, where you want to generate like it could be in csv file or xls file etc.

Note: Remember one thing you should not create a file whether it could be csv,xls etc file because Simple Data writer automatically creates the Test results file as provided location.Then simple run your test plan and try to generate report dashboard with command prompt with generated Test Result file. You can read more configurations here.

Here it has given complete step by step details for generating Report Dashboard in Jmeter.

Upvotes: 0

UBIK LOAD PACK
UBIK LOAD PACK

Reputation: 34566

You have at least 2 problems:

  • first ensure that you have a Java 7 or 8 installed and that this command works:

java -version

  • second, change your current directory to be in the jmeter_home\bin folder (C:\Users\Freeware Sys\Documents\apache-jmeter-3.0\bin) ad run command from there

Upvotes: 1

Related Questions