Save JMeter table data without a plugin?

Is there any way to save pivot table data from my JMeter tests every time they run without using the command line or any kind of plugin? You can output the default values ​​in csv, which I already do, so there should be a way to do the same with the average value, min, max, etc.

+3
source share
2 answers

You can configure the file name where you are going to save the result right here - in the summary report. Find field: write result to file / read from file.

If you intend to run JMeter in non-gui mode, you can configure the format in which the test results will be saved. You can choose xml or csv. Use jmeter.save.saveservice.output_format config in jmeter.properties.

0
source

Yes. Add a simple data writer (test plan> Add> listeners> Simple data writer), and then specify the path that you want to save. You can customize the result data that you want to save. Then you can load this file into any of the reports, result trees, etc. And again see all the test results.

0
source

All Articles