Skip to content

Commit

Permalink
Update 04 Thresholds.md
Browse files Browse the repository at this point in the history
Correct discrepancy between 200ms (comment) and 500ms (actual code) to be 200ms on both.
  • Loading branch information
reub-the-cube authored and na-- committed Mar 18, 2021
1 parent 0d2b6d8 commit 2b5ce56
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import http from 'k6/http';
export let options = {
thresholds: {
http_req_failed: ['rate<0.01'], // http errors should be less than 1%
http_req_duration: ['p(95)<500'], // 95% of requests should be below 200ms
http_req_duration: ['p(95)<200'], // 95% of requests should be below 200ms
},
};

Expand Down

0 comments on commit 2b5ce56

Please sign in to comment.