Here is my test scenario on Gatling:
val createTemplatesScenario = scenario("Template creation")
.feed(userFeeder)
.exec(doLogin) // populates access token in the session
.exec(doListProviders)
.exec(doCreateTemplate)
...
.exec(doDeleteTemplate)
And I want to exclude Login request from reports because sometimes it can take too much time on our system and affects all the metrics:
Is there a way to "prepare" test scenario so that only necessary actions will be taken into account?