tags:

views:

37

answers:

2

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

+1  A: 

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.

BlackGaff
can you give me more info on how to export the results to a spreadsheet from JMeter
If I am not wrong to get a 95% line, I would need to be able to export the raw number that JMeter captures for each thread, when the thread was sent and when it received
A: 

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)

Bala
When you save the result file, make sure you have clicked on configure button and enabled save elapsed time. Load it in excel and on this value you will be applying the percentile function to obtain 95% percentile.
Bala