JMeter report 95% line
We have a JMeter requirment to get the 95% line. JMeter by default displays only the 90% line. Is there a way 开发者_JAVA百科I can get the 95% value using external plugins or using some option in JMeter itself
Muthiah
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
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)
You can use our plugin which generates all percentiles: http://code.google.com/p/jmeter-plugins/wiki/RespTimePercentiles
Stephane
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.
Use Jmeter 2.13 version, there you can get 95% column in aggregate report
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
精彩评论