trace-agent
trace-agent copied to clipboard
A java agent for tracing which can be configured via simple text file and instruments the code without rebuilding the project.
With this change we will be able to attach the agent to a running java process and install all the action and see the messages without have to restart the...
For my debugging purpose It is helpful to have the Agent output along with the role log messages from the component instead of isolated in stdout. That way the messages...
When the trace agent is logging anything through it's interceptors, add the possibility to log the current thread's name, which is very useful in a multi-threaded application. For example a...
Two tests fail on Windows machines "testElapsedTime" and "testMultipleActionsOnTheSameMethod". As it turns out it fails because the generated multiline results contain newlines as \r\n and with that the "s.matches" does...