Gatling Injection
https://gatling.io/docs/gatling/reference/current/core/injection/
setUp(
scn.injectOpen(rampUsersPerSec(100).to(700).during(Duration.ofSeconds(60)))
).protocols(httpProtocol);
- constantConcurrentUsers(nbUsers).during(duration): Inject so that number of concurrent users in the system is constant
- rampConcurrentUsers(fromNbUsers).to(toNbUsers).during(duration): Inject so that number of concurrent users in the system ramps linearly from a number to another