-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
k6 v0.21.0 on Windows: wrong iterations count #652
Comments
I think that this is because when you use duration (via the If you run the script with @robingustafsson, @luizbafilho: I'm not sure if the current behavior is the best one. Maybe we just have to document it better, but maybe it makes more sense to emit the |
@gunzip, I discussed this with @robingustafsson and @luizbafilho and for now we'll leave the It's probably also worth mentioning that users who want to count the number of started iterations can easily do so with a simple custom |
This issue seems to have slipped through the cracks... 😄 k6 has had the The remainder of this issue falls under #877 (comment), which already has a WIP PR that resolves it (#1769), though it's currently blocked by other things. In any case, I think we can safely close this issue. |
k6 v0.21.0 on windows (downloaded from the zip file on GitHub)
The number of reported iterations is lower by a factor of (- #VU) than the real number of http requests.
You can verify it pointing k6 to something like beeceptor, but I've experienced this behavior steadily, ie using
k6 run -u 2 -d 4s -> reported iterations: 43 (real number of requests: 45 = 43 + 2)
on another (slower) endpoint:
k6 run -u 10 -d 10s -> reported iterations: 42 (real number of requests: 52 = 42 + 10)
The text was updated successfully, but these errors were encountered: