I would like to save table data generated by an aggregate report using command line, so that I can automate the process. However, I read from an older post around 2004 using
In order to achieve this you will have to write a batch script (windows) and shell script (Linux).
Please follow the below mentioned steps:
- jmeter -n -t "C:\Test.jmx" -l "C:\output.jtl" ^&^& exit
- java -jar CMDRunner.jar --tool Reporter --generate-csv "C:\Aggregate_Report.csv" --input-jtl "C:\output.jtl" --plugin-type AggregateReport
Hope this will help.