Jmeter: Generating the final report via the commnd line does not include 95% and 99% of the lines in the generated report

I am using Jmeter 2.13. We generate an aggregated report through the command line

java -jar CMDRunner.jar --tool Reporter --generate-csv aggregate.csv --input-jtl merged.csv --plugin-type AggregateReport

When an aggregate report is generated through the Jmeter UI, I get 95% and 99%.

+1
source share
1 answer

The /apache-jmeter-2.13/binfiles jmeter.propertiesin the folder are as follows:

#---------------------------------------------------------------------------
# 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

Copy this to a file user.propertiesand uncomment aggregate_rpt_pct1=90it to get the 90th percentile in the generated one Aggregate Report.

You can add, for example, aggregate_rpt_pct3=70to get the 70th percentile in the generated summary report.

+1
source

Source: https://habr.com/ru/post/1667222/


All Articles