Reputation: 299
We're running a test case for load testing, over different servers. What we want to do is, given that test case, stop if we can see a performance decrease, based on a response time threshold.
What we have now is threadgroup
defined, and inside it, an HTTP request defined plus a view table for output. What should I do to put this control in there?
Upvotes: 0
Views: 1300
Reputation: 168157
Stop Test
. Above steps will stop your test after first occurrence of response time exceeding the threshold.
See How to Use JMeter Assertions in Three Easy Steps article for more information on how to conditionally set pass/fail criteria in your JMeter test.
P.S.
Upvotes: 3