Help me calculate the numbers

Hey there, I am trying to have users coming every 15 seconds. I have this

`

scenario(this.getClass.getSimpleName)
.during(30 minutes) {
pace(15 seconds)
.exec(work)
}
.inject(atOnceUsers(1))

`

I know this is not correct, but I wonder what I have to put in inject?

In human language, I need this:

during 30 minutes, every 15 seconds add one new user to execute the work (work is set of steps that can be long as few minutes)

I am not getting something with the ‘during/page’ :slight_smile:

constantUsersPerSec(1.0 / 15) during(30 minutes)

Thanx! I was under impression that constantUsersPerSec rounds to an int

Thank you!

Thanx! I was under impression that constantUsersPerSec rounds to an int

In the sense that it boils down to rampUsers(120) over(30 minutes), yes.