我如何让延迟信息显示在摘要报告表中。
目前只有经过的时间平均值,最大值,最小值。但它不显示延迟信息。
我尝试在单击配置时选择“保存延迟”。
使用 jmeter-plugin 我只能生成延迟与时间的关系图。但我需要在摘要报告中显示延迟。有没有我需要做的设置。
jtl 文件包含信息,但由于它是无头的,因此不确定是否显示延迟信息。
谢谢
我如何让延迟信息显示在摘要报告表中。
目前只有经过的时间平均值,最大值,最小值。但它不显示延迟信息。
我尝试在单击配置时选择“保存延迟”。
使用 jmeter-plugin 我只能生成延迟与时间的关系图。但我需要在摘要报告中显示延迟。有没有我需要做的设置。
jtl 文件包含信息,但由于它是无头的,因此不确定是否显示延迟信息。
谢谢
You need to uncomment the following property in jmeter.properties file and set it to true
jmeter.save.saveservice.latency=true
It is also possible to override the property from command line like:
jmeter -n -J jmeter.save.saveservice.latency=true ......
You may also want to consider analysis service for JMeter which provides a much richer representation of load test results.