Different number of requests displayed in reports than number of requests captured

Hello,

I have a question about the number of requests captured versus the requests displayed in report. So, using the recorder I capture for a use case about 570 requests. But in the report charts, I see that two numbers, at Global Information I see 331 requests and below at Statistics I see 352 requests. What is the explanation for this? Thank you.

Sorry, crystal ball broken.
Could you please share a smaller sample so we can have a look?

Ok, I attached the class which creates the requests(of course, a bit modified by me), an image with test reports and a zip with the folder which stores the .txt files of requests generated.

Requests.scala (113 KB)

search2108.zip (71.5 KB)

Thanks.
Could you please share your simulation.log (located in the reports folder), please?

Sure, here it is.

simulation.log (19.5 KB)

So, using the recorder I capture for a use case about 570 requests.

A bug indeed, thanks for reporting!
https://github.com/gatling/gatling/issues/3786

But in the report charts, I see that two numbers, at Global Information I see 331 requests and below at Statistics I see 352 requests.

No, in Global Information, you can see:

  • successful requests with response time < 800ms: 331
  • successful requests with response time between 800ms and 1200ms: 16
  • successful requests with response time > 1200ms: 14
  • failed requests: 1
    331 + 16 + 14 + 1 = 352

Numbers in Global Information and Statistics are properly aligned.

Can I ask when a fix will be and when will be the next build which will include it?

You’re lucky, we happen to have 3.2.1 planned for tomorrow or Monday.

Thanks very much for your help.