0
votes

I configured a 'Jmeter Aggregate Report' against a Thread Group. And when I run the same in GUI mode - I can see the 'Aggregate report' table/columns in gui and it looks ok also.

But same report if I look in the saved statistics1.csv file it doesn't contains same columns data in .csv file, like all the required aggregate report table columns data are not in saved aggregate file (columns like, average, median, max, min, throughput etc).

Jmeter Aggregate Report

CSV File

Could you please help me, how can I get 'Aggregate Table' data in CSV file?

2

2 Answers

2
votes

You won't be able to save it directly from the listener as the data is being calculated basing on the values from the .jtl results file.

If you need to generate the report in unattended manner you can use JMeterPluginsCMD Command Line Tool which has AggregateReport plugin, this seems to be something you're looking for.

You can install the plugin (and keep it up-to-date) using JMeter Plugins Manager

JMeter Plugins Manager Command Line Plotting Tool

0
votes
  1. Download JMeterPluginsCMD.

  2. Move jmeter-plugins-manager-0.13.jar into /bin/libs/ext of your JMeter.

  3. Open JMeter, go to Options > Plugins Manager.
  4. Install the following plug-ins:
    • Synthesis Report
    • Command line graph plotting tool
  5. Run this command from your JMeter's /bin folder: ./JMeterPluginsCMD.sh --tool Reporter --generate-csv test.csv --input-jtl input.jtl --plugin-type AggregateReport

See https://stackoverflow.com/a/45112998/4630195.