why does
setUp(scn.inject(constantUsersPerSec(50) during (10 seconds))).protocols(httpConf)
gives me a gatling report stating (at max) 500 users per seond?
shouldn’t it be 50?
Runing:
`
setUp(scn.inject(constantUsersPerSec(50) during (1 seconds))).protocols(httpConf)
`
gives me what I want (50 users per second max)
is this because of throughput?
as in given this load model is multiplied * by 10?
My goal is to achieve 50 users per second over time.