I am new to scala and Gatling.
When Gatling does a check for a status 200 I want to include a variable onlineID into the logs so that I know which user had an issue.
object MyRequests{
val getAddressForOnlineId = feed(Configuration.csvFeeder)
.exec(
http("Abfrage von Adressdaten")
.get(Configuration.baseUrl + "/myrequest/${myonlineID}" )
.headers(Configuration.globalHeaders)
.check(status.is(200))
)
How can I do this?