Hi:
I am trying to understand the results I am getting from the Group() function to aggregate groups of requests in Gatling.
I understand that the Group() function will aggregate requests from the first requestStartDate of the group to the last responseEndDate of the Group.
If I look at the timestamp associated to each Group in the Simulation.Log, those timestamps match nicely that definition.
However, Gatling reports a Response Time in (ms) for groups that is off most of the time.
For example, in the example shown below taken from the Simulation.Log, Gatling calculates 40755ms for Login Group, which is way higher than the subtraction of the two timestamps in the same Group Login record.
1447634196231 – 1447634187678 = 8553
For BatchUpdate group, I see another discrepancy, but in this case, Gatling reporting a lower value (6177) than the real one (10237)
For the third group shown (CommitG), the value obtained from Gatling seems to match closely the calculated (sustracted) value.
batchupdate 7936755033588976644-0 GROUP Login 1447634187678 1447634196231 40755 87 0 OK
batchupdate 7936755033588976644-0 GROUP CommitG 1447634202818 1447634206468 3635 15 0 OK
batchupdate 7936755033588976644-0 GROUP BatchUpdate 1447634196232 1447634206469 6177 27 0 OK
GroupName Gatling Value Real Substracted Value Comment
Login 40755 8553 Gatling value is way higher than Real
CommitG 3635 3650 About the same
BatchUpdate 6177 10237 Gatling value is lower than Real
I need to know if this is a known bug with Gatling 2.1.5, if so, if there is a fix for it, or if these “response times values” have a different meaning.
I also need to know the meaning of the last 3 columns (87,0,OK for Group Login above)
Any information will be appreciated,
Rene
PD: This is another example from the second user in the simulation:
batchupdate 7936755033588976644-1 GROUP Login 1447634217700 1447634222808 27726 87 0 OK
batchupdate 7936755033588976644-1 GROUP CommitG 1447634229319 1447634232276 2949 15 0 OK
batchupdate 7936755033588976644-1 GROUP BatchUpdate 1447634222808 1447634232276 5435 27 0 OK
GroupName Gatling Value Real Substracted Value Comment
Login 27726 5108 Gatling value is way higher than Real
CommitG 2949 2957 About the same
BatchUpdate 5435 9468 Gatling value is lower than Real