I was running load tests and the final statistics showed the number of requests
http_reqs..................: 77
when I executed the test for 100 VUs with 2 iterations. 77
requests is the amount that supposed to be done by a single user so I thought it shows only single VU statistics.
Then I switched to 1000 VUs and 100 iterations this result
http_reqs..................: 3803
Which feels kinda small for 1000 virtual users and 100 iterations and invalidates my thought that it shows the number of requests per virtual user.
When running the test it adds the records to the database. So I expected at least 1000 new records. But it adds only 100 each run.
Also it provides the information that
All iterations (100 in this test run) are shared between all VUs, so some of the 1000 VUs will not execute even a single iteration!
So I presume something does not work?