The only global custom text on Gatling report is Simulation class name. It appears in the upper right corner of the report.
How can I put some custom message (short) without changing the name of the Simulation class?
As far as I know there are 3 ways of put some custom message to Gatling report
Run description param inside gatling.conf file, it is displayed at top part of report (next to report time and duration)
gatling {
core {
runDescription = "Test description of report"
}
}
Scenario name - param of scenario in your test code, displayed on one of reports (Active Users along the Simulation)
scenario("Scenario name")
.exec(http("Action name").get("http://localhost"))
Action name - param of http in your test code, displayed on Statistic table
scenario("Scenario name")
.exec(http("Action name").get("http://localhost"))
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With