28 Apr 2023 03:51 PM - last edited on 08 May 2023 12:15 PM by MaciejNeumann
Hi,
Sometimes RUM is enabled but tagging users is not allowed for privacy reasons. And you would like to monitor your user actions in target web application but only yours, others must be still anonymous.
If you are in that situation:
That session will be tagged with your input tag. It might be helpful for testing or discovery or troubleshooting purposes.
I hope it could help!
Best regards
12 May 2023 09:12 AM
Always appreciable this type of sharing. In addition, here is the link detailing a complete list of these JS API functions.
https://www.dynatrace.com/support/doc/javascriptapi/interfaces/dtrum_types.DtrumApi.html
A more fleshed out tip, if you want to follow a specific user click (here click button "soumettre: ", possibility to change in the JS application code (requires the development team) as follows:
function submitCockpitAction(caseName)
{
action = dtrum.enterAction("soumettre:" + caseName);
dtrum.leaveAction(action);
}
Result :
12 May 2023 09:44 AM
Thank you! 😎
30 Apr 2024 06:24 AM
How about I would like to monitor my user actions in target web application but only specific web server routed by load balancer (4 web server routed by load balancer but only 1 web server that need to be monitored).
Rudy
30 Apr 2024 07:46 AM
Hi,
I am not sure if that is possible but, what do you want to achieve?
Best regards
30 Apr 2024 08:42 AM
We suspect that the request distribution is not balance enough (poorly done by load balancer). It has something to do with capacity planning (adding 1 more web server or replacing the load balancer)
30 Apr 2024 10:41 AM
Hi,
Service Flow view can help to see how many request are going to which web servers.
If you have all web servers with OneAgent with fullstack, that is monitored out of the box.
Best regards
30 Apr 2024 12:58 PM
Do you know which column in usersession that represents the web server? Or should we add additional properties like in this article (Filter user sessions based on custom session properties (EAP) (dynatrace.com))?