File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed
src/data/markdown/translated-guides/en/02 Using k6/14 Scenarios/01 Executors Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ export const options = {
58
58
export default function () {
59
59
http .get (' https://test.k6.io/contacts.php' );
60
60
// We're injecting a processing pause for illustrative purposes only!
61
- // Each iteration will be ~515ms, therefore ~2 iterations/second per VU maximum throughput .
61
+ // Sleep time is 500ms. Total iteration time is sleep + time to finish request .
62
62
sleep (0.5 );
63
63
}
64
64
```
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ export const options = {
51
51
export default function () {
52
52
http .get (' https://test.k6.io/contacts.php' );
53
53
// We're injecting a processing pause for illustrative purposes only!
54
- // Each iteration will be ~515ms, therefore ~2 iterations/second per VU maximum throughput .
54
+ // Sleep time is 500ms. Total iteration time is sleep + time to finish request .
55
55
sleep (0.5 );
56
56
}
57
57
```
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ export const options = {
46
46
export default function () {
47
47
http .get (' https://test.k6.io/contacts.php' );
48
48
// We're injecting a processing pause for illustrative purposes only!
49
- // Each iteration will be ~515ms, therefore ~2 iterations/second per VU maximum throughput .
49
+ // Sleep time is 500ms. Total iteration time is sleep + time to finish request .
50
50
sleep (0.5 );
51
51
}
52
52
```
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ export const options = {
53
53
export default function () {
54
54
http .get (' https://test.k6.io/contacts.php' );
55
55
// We're injecting a processing pause for illustrative purposes only!
56
- // Each iteration will be ~515ms, therefore ~2 iterations/second per VU maximum throughput .
56
+ // Sleep time is 500ms. Total iteration time is sleep + time to finish request .
57
57
sleep (0.5 );
58
58
}
59
59
```
Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ export const options = {
87
87
export default function () {
88
88
http .get (' https://test.k6.io/contacts.php' );
89
89
// We're injecting a processing pause for illustrative purposes only!
90
- // Each iteration will be ~515ms, therefore ~2 iterations/second per VU maximum throughput .
90
+ // Sleep time is 500ms. Total iteration time is sleep + time to finish request .
91
91
}
92
92
```
93
93
You can’t perform that action at this time.
0 commit comments