I have the ramp up test that increases the amount of users every time in Gatling. For the user's injections I am using these methods:
setUp(
Test.inject(incrementConcurrentUsers(1)
.times(4)
.eachLevelLasting(20)
.separatedByRampsLasting(1)
.startingFrom(4)
))
So according to this screenshot, I need to have 4 additional reports for every user's change during a specific time for one simulation. Is there any way to generate a separate report for every level with the user's change?