Skip to content

Commit 2b5ce56

Browse files
reub-the-cubena--
authored andcommitted
Update 04 Thresholds.md
Correct discrepancy between 200ms (comment) and 500ms (actual code) to be 200ms on both.
1 parent 0d2b6d8 commit 2b5ce56

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/data/markdown/docs/01 guides/02 Using k6/04 Thresholds.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import http from 'k6/http';
2828
export let options = {
2929
thresholds: {
3030
http_req_failed: ['rate<0.01'], // http errors should be less than 1%
31-
http_req_duration: ['p(95)<500'], // 95% of requests should be below 200ms
31+
http_req_duration: ['p(95)<200'], // 95% of requests should be below 200ms
3232
},
3333
};
3434

0 commit comments

Comments
 (0)