Constant user load over specific time

Hello,

in JMeter I can define tests to run for 1 hour with 200 users.
This will result in 200 concurrent users for a complete hour.

Is it possible to define a similar setup with Gatling?

BR

atOnceUsers(200) with requests in a forever loop with a maxDuration(60 minutes)

Hi Stephan,

You can use constantuserPerSec(200) during (60 minutes).

I would recommend ramping up to 200 users in few mins and then ramping down after the 1 hour:

setUp(
scenario.inject(
rampUsersPerSec(1) to(200) during(5 minutes),
constantUsersPerSec(200) during(60 minutes),
rampUsersPerSec(200) to(1) during(5 minutes) ))

Regards,
Chandra