Skip to content

Commit

Permalink
adjust threshold
Browse files Browse the repository at this point in the history
  • Loading branch information
Michaelli8899 committed Oct 29, 2024
1 parent 4304d4d commit 4925a9d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions k6-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ export const options = {
thresholds: {
http_req_failed: [
{
threshold: 'rate<0.15', // http errors should be less than 10%
threshold: 'rate<0.20', // http errors should be less than 10%
abortOnFail: true,
delayAbortEval: '10s',
},
],
http_req_duration: [
{
threshold: 'p(95) < 2500',// 95% of requests should be below 2s
threshold: 'p(95) < 3000',// 95% of requests should be below 2s
abortOnFail: true,
delayAbortEval: '10s',
},
Expand Down

0 comments on commit 4925a9d

Please sign in to comment.