You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Let we have 1 request per iteration. We can expect that iteration metric collected at the end of the given one second interval equals to the previous value increased by the amount of requests done during that second.
This is the json output filtered with iterations and http_reqs metrics. Collected values and the order look coherent, but timestamps are in divergence.
The problem is that metrics are buffered until the end of a VU iteration, so even though the request is made earlier, it's not actually pushed to a collector until the VU returns. What you're seeing here is a performance issue: the overhead of invoking a VU iteration is ridiculously high, so there's a noticeable delay. I'm keeping this in mind for #137, but there's no issue here per se.
Let we have 1 request per iteration. We can expect that
iteration
metric collected at the end of the given one second interval equals to the previous value increased by the amount of requests done during that second.This is the
json
output filtered withiterations
andhttp_reqs
metrics. Collected values and the order look coherent, but timestamps are in divergence.The text was updated successfully, but these errors were encountered: