Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I generate a Dashboard Report in jmeter?

I am running jmeter2.12 on Fedora.

What are the steps to generate a Dashboard Report?

like image 666
Vairamuthu Avatar asked Jul 08 '16 09:07

Vairamuthu


People also ask

What is summary report in JMeter?

The summary report consists of the different rows for each and every Test Plan like an aggregate report. We know that in JMeter we have different listeners to view the result of Test Case execution in different forms such as a table, tree, graph, and log file. Here as per our requirement, we can select any listener.


2 Answers

steps:

  • 1.Add 'Summary Report', 'Simple Data Writer' from Listeners.
  • 2.Set location to generated csv
  • 3.open reportgenerator.properties from "D:\apache-jmeter-3.0\bin\" copy all content from it
  • 4.Open user.properties from same bin folder
  • 5.Append all from reportgenerator.properties to user.properties and save
  • 6.Now run the your Test script
  • 7.open cmd and enter

jmeter -g D:\Report\TC001_Result.csv -o C:Report\ReportD

    1. Go to C:Report\ReportD and open index.html and you can check your test result

Note:Should not create any folder with name ReportD on same as Jmeter will create and save you report

like image 157
Pavan T Avatar answered Oct 04 '22 22:10

Pavan T


JMeter dashboard is only available since JMeter 3.0.

To generate it, see this tutorial and video by one of JMeter developers.

And reference documentation :

  • http://jmeter.apache.org/usermanual/generating-dashboard.html

As of JMeter 3.1, It's as easy as calling:

jmeter -n -t <path_to.jmx> -l <log.jtl> -e -o <dashboard_folder>

If you're looking to learn jmeter correctly, this book will help you.

like image 26
UBIK LOAD PACK Avatar answered Oct 04 '22 21:10

UBIK LOAD PACK