File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed
Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -7,17 +7,21 @@ export const options = {
77 discardResponseBodies : true ,
88 scenarios : {
99 [ `load--petclinic--${ __ENV . VARIANT } --warmup` ] : {
10- executor : 'constant-vus ' , // https://grafana.com/docs/k6/latest/using-k6/scenarios/executors/#all-executors
11- vus : 5 ,
10+ executor : 'constant-arrival-rate ' , // https://grafana.com/docs/k6/latest/using-k6/scenarios/executors/#all-executors
11+ preAllocatedVUs : 5 ,
1212 duration : '10s' ,
1313 gracefulStop : '2s' ,
14+ timeUnit : '1s' ,
15+ rate : 200 ,
1416 } ,
1517 [ `load--petclinic--${ __ENV . VARIANT } --high_load` ] : {
16- executor : 'constant-vus ' ,
17- vus : 5 ,
18+ executor : 'constant-arrival-rate ' ,
19+ preAllocatedVUs : 5 ,
1820 startTime : '12s' ,
1921 duration : '20s' ,
2022 gracefulStop : '2s' ,
23+ timeUnit : '1s' ,
24+ rate : 200 ,
2125 } ,
2226 }
2327} ;
You can’t perform that action at this time.
0 commit comments