I need to generate an Aggregate report in CSV format so I use
JMeterPluginsCMD Command Line Tool.
JMeterPluginsCMD.bat --generate-csv d:\temp\jmeter-log\datastream\aggregate.csv --input-jtl d:\temp\jmeter-log\datastream\log.jtl --plugin-type AggregateReport
It generated a CSV file with columns ...,aggregate_report_median, aggregate_report_90%_line, aggregate_report_95%_line, aggregate_report_99%_line,... See the report in the attachment [aggregate.csv].
However, the Aggregate Report GUI shows 50%, 75%, and 90%, which is from my configuration in jmeter.properties. See the file and screenshot in the attachments [jmeter.properties] [aggregate-report-gui.png]
# Percentiles to display in reports
# Can be float value between 0 and 100
# First percentile to display, defaults to 50%
aggregate_rpt_pct1=50
# Second percentile to display, defaults to 75%
aggregate_rpt_pct2=75
# Second percentile to display, defaults to 90%
aggregate_rpt_pct3=90
Could you tell me if it is possible to make the plugin to read Percentile configuration in jmeter.properties?