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
A virtual user / request tracing feature would be useful to be able to have real-time visibility into what (a subset of) virtual users are doing - requests being sent, responses that come back etc.
This would make it easier to both write new scripts and to figure out why a particular scenario isn't working anymore.
My initial though was inside of core it should emit events related to scenarios, then in the runner or other tools you can subscribe to those events and do whatever with them. Plugins could be allowed for to extend functionality. EG: Pushing all events to Mongo, Cassandra, Redis,
That would allow users to go in from a report and basically see "Ahh I got a 500 from xxx, let me go query for that and see what happened"
I think the basic format should be something similar to how Bunyan logs, giving hostname, pid, eventName, and data.
I know it isn't supported yet, but that way when artillery is running in something like a containerized environment better information is available about the host that saw the errors (maybe its a host issue) and the errors themselves.
@jdarling There's two related but different use-cases to support - in one of them, you want visibility into every action that a virtual user has taken (requests sent, what was captured etc) to help debug complex scenarios or to verify they are working as intended. The other use-case is seeing the details of a request that's caused the server to return an error response. Both would be solved by logging absolutely everything that happens, but that would affect performance when running large-scale tests.
A virtual user / request tracing feature would be useful to be able to have real-time visibility into what (a subset of) virtual users are doing - requests being sent, responses that come back etc.
This would make it easier to both write new scripts and to figure out why a particular scenario isn't working anymore.
The text was updated successfully, but these errors were encountered: