Any way to capture the output of a Gatling run instead of emitting to stdout?

e.g. I can run my Simulation in Eclipse via the Engine helper class, which sets up the environment before kicking off Gatling.

I can’t see any way to get the console output directed to a file or captured in any other way. Linked to this, I’d like to know the report directory for the run.

I want this as I’m planning to kick off a gatling run via web ui sp want to return the console output as well as the HTML report to the user via the browser.

I could probably redirect stdout but that seems a little hacky, so was wondering if there was a better way.

Thanks.

The output actually goes through Logback.
So, I think that the easiest for you is to change the appender so that it goes where you want.

Cheers
Nicolas

That’s good news. Thanks for that.