Start logging results only after a few requests were executed

Hello all,

I’m using Gatling to do rate-limit tests so I want Gatling to log results only once my application is a already loaded (something like 50 requests have already been sent or 15 seconds have passed).
Is there a way to start Gatling run, but log the results only after a delay (either in # of request or in time) ?

Regards,
Alex

Nope

That said, if you were really intent on being able to view the results without the first N requests, you could hand-modify the simulation log, removing the first N requests, and regenerate the reports.

Thanks for you answers, I’ve found the solution to split my simulation in 2 scenarios, one being the warmup and the second being the effective test.
This way, the results appears separated and I can only use the logs of the second scenario.

Regards,
Alex