cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

RUM: Tagging only your user actions, keeping others anonymous

AntonPineiro
DynaMight Guru
DynaMight Guru

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:

  1. Open your favorite browser in incognito mode.
  2. Going to target application where RUM is enabled.
  3. Press F12 in your keyboard or going to Developer tools interface.
  4. Go to “Console” tab.
  5. Type dtrum.identifyUser("Your_username") and press ENTER.

AntonPineiro_0-1682693266760.png

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

❤️ Emacs ❤️ Vim ❤️ Bash ❤️ Perl
7 REPLIES 7

uros_djukic1
Dynatrace Advisor
Dynatrace Advisor

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 : 

uros_djukic1_0-1683879100854.png

 



 

Thank you! 😎

❤️ Emacs ❤️ Vim ❤️ Bash ❤️ Perl

 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

Hi,

I am not sure if that is possible but, what do you want to achieve?

Best regards

❤️ Emacs ❤️ Vim ❤️ Bash ❤️ Perl

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)

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

❤️ Emacs ❤️ Vim ❤️ Bash ❤️ Perl

rudy_h_0-1714478104230.png

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))?

Featured Posts