How to see load test Raw data(like we can export raw data in to csv file to check transaction responses, users etc) using loadrunner in JMeter?

1

There are 1 best solutions below

0
Dmitri T On

When you run JMeter in command-line non-GUI mode like:

jmeter -n -t /path/to/your/test.jmx -l /path/to/results.jtl 

the results.jtl file contains the "raw" data you're looking for.

Another option is adding a Listener like Simple Data Writer and provide the filename and the metrics you want to store

enter image description here