I have connected the gatling to influxDB with all the configuration mentioned in its website. I can see pass fail, ResponseTime, StDev, requestname in influxDB. Now I need to add Response code for KO transactions and its error message. Can anyone let me know, if that can be added and how
The configuration doe so far
gatling.conf :
writers = [console, file, graphite]
graphite { light = false # only send the all* stats host = "localhost" # The host where the Carbon server is located port = 2003 # The port to which the Carbon server listens to (2003 is default for plaintext, 2004 is default for pickle) protocol = "tcp" # The protocol used to send data to Carbon (currently supported : "tcp", "udp") rootPathPrefix = "gatling" # The common prefix of all metrics sent to Graphite bufferSize = 8192 # GraphiteDataWriter's internal data buffer size, in bytes writeInterval = 1 # GraphiteDataWriter's write interval, in seconds }
InfluxDB.conf
templates = [
"gatling.*.*.*.* measurement.simulation.request.status.field",
"gatling.*.users.*.* measurement.simulation.measurement.request.field"
]
Appriciate your help and thank you

