I want to do performance test for below scenario: 100 users/seconds for 10mins with a peak of 500users/seconds for every 30seconds
I am using throttling to achieve this
scn.inject(constantUserPersecond(100) during (10 minutes))
.throttle(reachRps(500) in (30 seconds),
holdFor(1 sec)
)
I am not getting the expected output. As per my understanding, I should get 20 peaks in a graph per 30seconds. Am I correct or is there any other way to achieve this?
Please help, I am new to gatling