Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I generate Test result (CSV)file and JTL file in jmeter?

After test run, How can I generate Test result (CSV)file and JTL file in jmeter. Because, this jtl file using to generate Dashboard report in jmeter3.0.

So, kindly give me solution.

Thanks, Vairamuthu.

like image 360
Vairamuthu Avatar asked Sep 15 '16 10:09

Vairamuthu


People also ask

How JTL file is created?

Default ConfigurationJMeter creates results of a test run as JMeter Text Logs(JTL). These are normally called JTL files, as that is the default extension − but any extension can be used. If multiple tests are run using the same output file name, then JMeter automatically appends new data at the end of the file.


1 Answers

  1. JMeter test result .jtl files should be generated during each test run given you provide results file location via -l command line argument
  2. .jtl files format defaults to CSV
  3. You can generate dashboard after test execution as follows:

    jmeter -n -t /path/to/test.jmx -l /path/to/results/jtl -e -o /path/to/html/report/folder
    

References:

  • Full list of JMeter command-line options
  • Dear Abby BlazeMeter, How Do I Run JMeter in Non-GUI Mode?
like image 134
Dmitri T Avatar answered Oct 20 '22 09:10

Dmitri T