I find Gatling documentation a bit unclear about a specific function: rampUsersPerSec
.
Injects a random number of users per second over a given duration (rate1) to (rate2) during(dur unit)
Injects users from starting rate1 to target rate2, defined in users per second, during a given duration. Eg : rampUsersPerSec(10) to(20) during(10 minutes)
For instance, with rampUsersPerSec(1) to 100 during 10
, I may have 41 more users on second 1, then 99 more users on second 2, then 8 more users on second 3, etc.?
Thanks in advance.