Hi:
I am in need to use InfluxDB/Grafana to monitor and record the load and performance testing results we are doing with Gatling.
Being able to aggregate the results of group of requests with the Group() function in Gatling is very helpful for our needs.
However, I noticed that these group calculations that are available in Simulation.Log are not sent/stored to InfluxDB by Gatling.
Is there a particular configuration I need to do in Gatling in order to record those results in InfluxDB as well?
I am assuming that after each group of request finishes an execution, Gatling will make the corresponding group calculation for each user session, rather than waiting after the simulation is over to make those calculations.
(So, if I have a simulation with 5 users, I will get 5 set of values to plot in InfluxDB/Grafana)
I will appreciate if you can provide more information regarding when Group calculations are computed in relation to the overall simulation and if there is a newer Gatling version that sends the Group metrics to Graphite/InfluxDB.
Rene
Example of Group calculations from Simulation.Log that I need to plot in InfluxDB/Grafana:
batchupdate 7936755033588976644-0 GROUP BatchUpdate,CommitG 1447634202818 1447634206468 3635 15 0 OK
batchupdate 7936755033588976644-0 GROUP BatchUpdate 1447634196232 1447634206469 6177 27 0 OK
batchupdate 7936755033588976644-0 GROUP Logout 1447634206471 1447634206799 322 9 0 OK
--
You received this message because you are subscribed to the Google Groups "Gatling User Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to gatling+u...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
templates = [ # Non-grouped requests "gatling.*.*.*.count measurement.simulation.request.status.field", "gatling.*.*.*.min measurement.simulation.request.status.field", "gatling.*.*.*.max measurement.simulation.request.status.field", "gatling.*.*.*.percentiles50 measurement.simulation.request.status.field", "gatling.*.*.*.percentiles75 measurement.simulation.request.status.field", "gatling.*.*.*.percentiles95 measurement.simulation.request.status.field", "gatling.*.*.*.percentiles99 measurement.simulation.request.status.field",
# Grouped requests "gatling.*.*.*.*.count measurement.simulation.group.request.status.field", "gatling.*.*.*.*.min measurement.simulation.group.request.status.field", "gatling.*.*.*.*.max measurement.simulation.group.request.status.field", "gatling.*.*.*.*.percentiles50 measurement.simulation.group.request.status.field", "gatling.*.*.*.*.percentiles75 measurement.simulation.group.request.status.field", "gatling.*.*.*.*.percentiles95 measurement.simulation.group.request.status.field", "gatling.*.*.*.*.percentiles99 measurement.simulation.group.request.status.field"]