JMeter 报告 95% 线
我们有一个 JMeter 要求来获得 95% 的线。 JMeter 默认情况下仅显示 90% 的行。有没有办法可以使用外部插件或使用 JMeter 本身
Muthiah中的某些选项来获得 95% 的值
We have a JMeter requirment to get the 95% line. JMeter by default displays only the 90% line. Is there a way I can get the 95% value using external plugins or using some option in JMeter itself
Muthiah
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
在 JMeter 2.13 版本中引入了 95% 和 99% 行,您可以自定义它们。它已添加到聚合图和聚合报告侦听器中。
您可以在 更改 和 更改历史记录
In version 2.13 of JMeter 95% and 99% lines were introduced and you can customize them. It was added to Aggregate Graph and Aggregate Report listeners.
More detailed release notes you can find under changes and changes history
将结果写入输出文件并将该文件导入 Excel,然后使用 PERCENTILE 函数计算 95%。百分位数(数据,9.5)
Write the results to an output file and import that file into excel then use PERCENTILE function to calculate your 95%. PERCENTILE(data,9.5)
您可以使用我们的插件来生成所有百分位数:http://code.google.com/p/jmeter-插件/wiki/RespTimePercentiles
Stephane
You can use our plugin which generates all percentiles: http://code.google.com/p/jmeter-plugins/wiki/RespTimePercentiles
Stephane
Jmeter 本身没有这个选项。
您可以将结果导出到电子表格并使用公式自行推断 95% 线。我经常这样做是为了获得加权平均值。
Jmeter itself does not have an option for this.
You could export the results to a spreadsheet and use a formula to extrapolate the 95% line yourself. I do this often to get weighted averages.
使用Jmeter 2.13版本,你可以得到聚合报告中95%的列
Use Jmeter 2.13 version, there you can get 95% column in aggregate report
您可以使用 J-meter 版本 >2.13。在那里你可以获得 95% 的列。您也可以从“jmeter.properties”文件修改它们。查找以下条目:
-aggregate_rpt_pct1=90aggregate_rpt_pct2
=95aggregate_rpt_pct3
=99
You can use J-meter version >2.13. There you can get 95% column. You can modify them as well from "jmeter.properties" file. Look for below entries:-
aggregate_rpt_pct1=90
aggregate_rpt_pct2=95
aggregate_rpt_pct3=99