Jmeter:通过commnd line生成聚合报告在生成的报告中不包括95%和99%的行

时间:2016-07-29 12:35:26

标签: jmeter jmeter-plugins

我正在使用Jmeter 2.13。我们正在通过命令行生成汇总报告

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

当通过Jmeter UI生成聚合报告时,我得到了95%和99%的行。

1 个答案:

答案 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个百分位数。