我正在使用Jmeter 2.13。我们正在通过命令行生成汇总报告
java -jar CMDRunner.jar --tool Reporter --generate-csv aggregate.csv --input-jtl merged.csv --plugin-type AggregateReport
当通过Jmeter UI生成聚合报告时,我得到了95%和99%的行。
答案 0 :(得分:1)
在/apache-jmeter-2.13/bin
文件夹中,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
将其复制到user.properties
文件并取消注释aggregate_rpt_pct1=90
以获得生成的Aggregate Report
中的第90个百分点。
您可以添加例如aggregate_rpt_pct3=70
以获得生成的汇总报告中的第70个百分位数。