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
@hassy@akhiljay @kugoo109 I found a workaround for this problem ... When you want to visualise the number of concurrent users in your monitoring system you need to count it form such metrics as: vusers.created, vusers.completed, vusers.failed
So here is the formula:
vusers_active = sum_cum(vusers.created) - ( sum_cum(vusers.completed) - sum_cum(vusers.failed) )
Where "sum_cum" - is the cumulative sum of all metric values during the test ...
I implemented this in the Datadog dashboard and I got a picture like this
In this simple example, I have a test with 3 steps (strating from 5 vusers) where the steps are increased by 5 users - 3 times... And surprise, I got the right number of active users :)
I am unable to see the chart that shows concurrent users connected to the service I am testing against.
Version info:
Running this command:
I expected to see this happen:
A concurrent users chart within the HTML generated report
Instead, this happened:
I see vusers created and completed chart
Files being used:
The text was updated successfully, but these errors were encountered: