Skip to content

Commit c40ca32

Browse files
committed
tweak: Increase warmup time
1 parent 8e78e94 commit c40ca32

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

benchmark/load/insecure-bank/k6.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export const options = function (variants) {
3737
scenarios[`load--insecure-bank--${variant}--warmup`] = {
3838
executor: 'constant-vus', // https://grafana.com/docs/k6/latest/using-k6/scenarios/executors/#all-executors
3939
vus: 5,
40-
duration: '10s',
40+
duration: '20s',
4141
gracefulStop: '2s',
4242
env: {
4343
"APP_URL": variants[variant]["APP_URL"]
@@ -47,7 +47,7 @@ export const options = function (variants) {
4747
scenarios[`load--insecure-bank--${variant}--high_load`] = {
4848
executor: 'constant-vus',
4949
vus: 5,
50-
startTime: '12s',
50+
startTime: '22s',
5151
duration: '15s',
5252
gracefulStop: '2s',
5353
env: {

benchmark/load/petclinic/k6.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export const options = function (variants) {
2828
scenarios[`load--petclinic--${variant}--warmup`] = {
2929
executor: 'constant-vus', // https://grafana.com/docs/k6/latest/using-k6/scenarios/executors/#all-executors
3030
vus: 5,
31-
duration: '10s',
31+
duration: '20s',
3232
gracefulStop: '2s',
3333
env: {
3434
"APP_URL": variants[variant]["APP_URL"]
@@ -38,7 +38,7 @@ export const options = function (variants) {
3838
scenarios[`load--petclinic--${variant}--high_load`] = {
3939
executor: 'constant-vus',
4040
vus: 5,
41-
startTime: '12s',
41+
startTime: '22s',
4242
duration: '15s',
4343
gracefulStop: '2s',
4444
env: {

0 commit comments

Comments
 (0)