We have a JMeter requirement to get a 95% row. By default, JMeter only displays a 90% line. Is there a way to get 95% value using external plugins or using some option in JMeter itself
Muthiah
Write the results to the output file and import this file into excel, then use the PERCENTILE function to calculate 95%. PERSENTIL (data, 9.5)
You can use our plugin that generates all percentiles: http://code.google.com/p/jmeter-plugins/wiki/RespTimePercentiles
Stephen
In version 2.13 of JMeter, 95% and 99% of the lines were introduced, and you can customize them. It has been added to the Aggregate Graph and Aggregate Report listeners.
You can find more detailed release notes in the changes section and change the history.
Jmeter itself has no way to do this.
You can export the results to a spreadsheet and use the formula to extrapolate the 95% line yourself. I often do this to get weighted average values.
Use version Jmeter 2.13, there you can get a 95% column in the summary report
You can use J-meter version> 2.13. There you can get the column at 95%. You can also change them from the "jmeter.properties" file. Find the entries below: -
aggregate_rpt_pct1 = 90
aggregate_rpt_pct2 = 95
aggregate_rpt_pct3 = 99