Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to generate HTML report in jmeter [duplicate]

Tags:

jmeter

I ran performance test case in jmeter. Now I can see results in 'View Results in Table'. But I also want same results to be saved as html report.

By default jmeter save html report? or is there a way to generate html report?

Can anyone please help me on this.

like image 275
sanjay pujari Avatar asked Jul 05 '17 06:07

sanjay pujari


1 Answers

JMeter provide dashboard report which is only available since JMeter 3.0.

The dashboard generator is a modular extension of JMeter. Its default behavior is to read and process samples from CSV files to generate HTML files containing graph views. It can generate the report at end of a load test or on demand.

To generate Dashboard report follow the instruction below:

Generating Report Dashboard.

Generation from an existing sample CSV log file:

jmeter -g <log file> -o <Path to output folder>

Generation after load test:

jmeter -n -t <test JMX file> -l <test log file> -e -o <Path to output folder>
like image 170
Adnan Avatar answered Nov 06 '22 13:11

Adnan