feat(Gatlin): Stress Test

Added a stress test and configured the parameters to simulate a smaller load
This commit is contained in:
LQ63
2026-05-04 13:13:54 +02:00
parent 0db2bb777f
commit dcc1cb905c
3 changed files with 35 additions and 2 deletions
+5 -1
View File
@@ -22,7 +22,11 @@ tasks.withType(io.gatling.gradle.GatlingRunTask) {
"-Dgatling.authToken=${findProperty('authToken') ?: System.getenv('GATLING_AUTH_TOKEN') ?: ''}",
"-Dhealthz.path=${findProperty('healthzPath') ?: '/health'}",
"-DmaxUsers=${findProperty('maxUsers') ?: '10'}",
"-DrampDuration=${findProperty('rampDuration') ?: '60'}"
"-DrampDuration=${findProperty('rampDuration') ?: '60'}",
"-DstartUsers=${findProperty('startUsers') ?: '2'}",
"-DusersIncrement=${findProperty('usersIncrement') ?: '2'}",
"-Dsteps=${findProperty('steps') ?: '5'}",
"-DstepDuration=${findProperty('stepDuration') ?: '30'}"
]
}