I see the following in jmeter.properties:
#---------------------------------------------------------------------------
# Aggregate Report and Aggregate Graph - configuration
#---------------------------------------------------------------------------
#
# Percentiles to display in reports
# Can be float value between 0 and 100
# First percentile to display, defaults to 90%
aggregate_rpt_pct1=90
# Second percentile to display, defaults to 95%
aggregate_rpt_pct2=95
# Second percentile to display, defaults to 99%
aggregate_rpt_pct3=99
When I execute the following command I only see aggregate_report_90%_line in the output:
jmeter/apache-jmeter-2.13/lib/ext/JMeterPluginsCMD.sh --generate-csv aggregate.csv --input-jtl test.jtl --plugin-type AggregateReport
[dataxu@load-driver ~]$ cat aggregate.csv
sampler_label,aggregate_report_count,average,aggregate_report_median,aggregate_report_90%_line,aggregate_report_min,aggregate_report_max,aggregate_report_error%,aggregate_report_rate,aggregate_report_bandwidth,aggregate_report_stddev
Java Request,144251,376,336,602,10,10576,100.00%,1656.2,.0,464.01
TOTAL,144251,376,336,602,10,10576,100.00%,1656.2,.0,464.01
Is there a way to get the 90, 95 and 99 percentiles from the command line?
Thanks