Taurus pass fail criteria on throughput or transaction/hits per seconds

144 Views Asked by At

How should I add taurus pass-fail criteria if requests/second for a sampler are less than 10 TPS.

1

There are 1 best solutions below

0
Dmitri T On

Check out Pass/Fail Criteria chapter of Taurus documentation

So if you add the following lines to your YAML configuration file:

reporting:
- module: passfail
  criteria:
  - hits<10 for 1s,stop as failed 

Taurus will mark the test as failed if the throughput will be less than 10 TPS/second.

More information: