user373201
user373201

Reputation: 11425

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 I can get the 95% value using external plugins or using some option in JMeter itself

Muthiah

Upvotes: 11

Views: 8174

Answers (6)

varun
varun

Reputation: 1

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

Upvotes: 0

Kaushlendra Jha
Kaushlendra Jha

Reputation: 396

Use Jmeter 2.13 version, there you can get 95% column in aggregate report

Upvotes: 1

Marek Pulka
Marek Pulka

Reputation: 121

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

Upvotes: 8

Stephane
Stephane

Reputation: 211

You can use our plugin which generates all percentiles: http://code.google.com/p/jmeter-plugins/wiki/RespTimePercentiles

Stephane

Upvotes: 6

Bala
Bala

Reputation: 122

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)

Upvotes: 7

BlackGaff
BlackGaff

Reputation: 7707

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.

Upvotes: 1

Related Questions