Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

JMeter report 95% line

Tags:

jmeter

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

like image 623
user373201 Avatar asked Oct 04 '10 20:10

user373201


People also ask

What is 90 percent line JMeter?

90% Line (90th Percentile) is the value below which 90% of the samples fall. The remaining samples too at least as long as the value. This is a standard statistical measure. See, for example: Percentile entry at Wikipedia.

What is JMeter 95 percentile?

Remaining highest value is the 90th percentile. 95% Line: It is the Value under which 95 Percent of the samples falls. The rest samples took at least as long as the value.

How do you find the 90th percentile in JMeter?

To get our 90th Percentile we take the value below the tenth value which is in row twelve in our example which matches our JMeter aggregate report value. The 95th Percentile will be in the value below our fifth value which will be row seven and the 99th Percentile will be the value below the top one.


1 Answers

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)

like image 198
Bala Avatar answered Sep 23 '22 03:09

Bala