EBDS
EBDS

Reputation: 1734

JMeter - Dashboard Statistics Percentile

Referring to: https://jmeter.apache.org/usermanual/generating-dashboard.html

I have a load test that does CRUD process (eg process 1 is create, 2 is Read). In each process, I need to execute several http samples. So:

Create: C1, C2, C3
Read:   R1, R2
Update: U1, U2, U3, U4
Delete: D1, D2, D3, D4

After running the load test, the Statistics table (in the main Dashboard page below the "Test and Report information" table), there is a Total & 90th, 95th, 99th pct.

enter image description here

Is it right to say that the Total Pct Response Time be the pct for all the http samples, (ie C1, C2, C3, R1, R2, U1, U2, U3, U4, D1, D2, D3, D4). In this case, this Total PCT won't be very useful because it "bundles" the different process http samples together and it won't give a good picture of response time by the individual processes, right ?

Thanks.

Upvotes: 0

Views: 191

Answers (1)

Dmitri T
Dmitri T

Reputation: 168217

If you don't find it "useful" - you're free to ignore the value but many people find it useful and configure "Total" percentile as a custom failure criteria in Jenkins Performance Plugin or Taurus tool.

Upvotes: 1

Related Questions