Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions benchmark/load/insecure-bank/k6.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export const options = function (variants) {
scenarios[`load--insecure-bank--${variant}--warmup`] = {
executor: 'constant-vus', // https://grafana.com/docs/k6/latest/using-k6/scenarios/executors/#all-executors
vus: 5,
duration: '20s',
duration: '165s',
gracefulStop: '2s',
env: {
"APP_URL": variants[variant]["APP_URL"]
Expand All @@ -38,7 +38,7 @@ export const options = function (variants) {
scenarios[`load--insecure-bank--${variant}--high_load`] = {
executor: 'constant-vus',
vus: 5,
startTime: '22s',
startTime: '167s',
duration: '15s',
gracefulStop: '2s',
env: {
Expand Down
4 changes: 2 additions & 2 deletions benchmark/load/petclinic/k6.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export const options = function (variants) {
scenarios[`load--petclinic--${variant}--warmup`] = {
executor: 'constant-vus', // https://grafana.com/docs/k6/latest/using-k6/scenarios/executors/#all-executors
vus: 5,
duration: '20s',
duration: '165s',
gracefulStop: '2s',
env: {
"APP_URL": variants[variant]["APP_URL"]
Expand All @@ -38,7 +38,7 @@ export const options = function (variants) {
scenarios[`load--petclinic--${variant}--high_load`] = {
executor: 'constant-vus',
vus: 5,
startTime: '22s',
startTime: '167s',
duration: '15s',
gracefulStop: '2s',
env: {
Expand Down
2 changes: 1 addition & 1 deletion benchmark/load/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ for app in *; do
# Using profiler variants for healthcheck as they are the slowest
if [ "${app}" == "petclinic" ]; then
HEALTHCHECK_URL=http://localhost:8082
REPETITIONS_COUNT=5
REPETITIONS_COUNT=2
elif [ "${app}" == "insecure-bank" ]; then
HEALTHCHECK_URL=http://localhost:8082/login
REPETITIONS_COUNT=2
Expand Down