How can I set up pauses in Gatling with normal distribution with mean and standard deviation
I can't exactly figure it out looking at gatling's documentation Global Pause configuration and scenario pauses
I think I found the answer.
In each request you can define a pause (different pause types are available)
exec(http("GET /")
.get("/"))
.pause(10,20)
Above code will add random(uniform?) pause between 10 and 20 seconds
Then in the simulation level you can define globally that you'd like to use normal distribution e.g.
.inject(
rampUsers(1)
.during(1)
)
.pauses(normalPausesWithStdDevDuration(5))
Above configuration will take pause set up on request level as a mean value and use std deviation 5s to chose final pause value