HI,
I am new to gatling and I intend to verify this scenario
Simulate 1000 req/s with a ramp of 100 seconds, then hold this throughput for 10 minutes, jump to 500 req/s and finally hold this throughput for 10 Minutes
The Code for the same is as below :
class MySimulation extends Simulation {
setUp((XXX.YYY).inject(constantUsersPerSec(70) during(20 minutes)).throttle(reachRps(1000) in (100 seconds), holdFor(10 minutes), jumpToRps (500), holdFor(10 minutes)))
Want to know as to why this behaviour in gatling, and any help to resolve the same is highly appreciated.
I have the same issue. Judging by server logs, reqests are still beind sent, even if the chart says there are no active users. So it may be some chart generation bug.
Sorry for my bad english.
We noticed the same (active users graph sometimes shows 0 - but analysis shows that the correct throughput was achieved so it’s a problem with the active users graph calculation as opposed to no load being applied).