feat(Gatlin): Endurance Test

Added an endurance test and changed endpoint to a more stable one
This commit is contained in:
LQ63
2026-05-04 15:45:44 +02:00
parent 0db2bb777f
commit 9b97fa6e34
3 changed files with 28 additions and 4 deletions
+3 -1
View File
@@ -22,7 +22,9 @@ 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'}",
"-DconcurrentUsers=${findProperty('concurrentUsers') ?: '3'}",
"-Dduration=${findProperty('duration') ?: '300'}"
]
}