I have my Gatling script installed, and now I want to set up a simulation with a fixed number of users for a certain period of time - the number of users must first be gradually increased to a certain value, and then saved there, adding a new one as needed as users finish.
I specifically do not want to use constantUsersPerSec (which introduces users at a constant speed), but something like .throttle(reachUsers(100) in rampUpTime, holdFor(10 minute)) , which should enter users if necessary.
source share