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

How to find current logged on users

ravi.govindasamy
New Member

How to find current logged on users in appdynamics

1 REPLY 1

Pratik.Maskey
AppDynamics Team

Hi,

 

Currently, there is no provision to check the currently logged in users through controller UI or API.

 

1)We register user login under controller_audit table. We can get who logged in to the controller for a time frame.

Following query will list out the users logged in to controller in last one hour -

SQL>select user_name,FROM_UNIXTIME(ts_ms/1000, '%Y %D %M %h:%i:%s') as login_time from controller_audit where action = 'LOGIN' and ts_ms > (select max(ts_ms) - 1000*60*60*1 from controller_audit);

2) We can generate a controller audit report.

3) We can check audit.log file under controller/logs.

 

-Thanks



Found something helpful? Click the Accept as Solution button to help others find answers faster.
Liked something? Click the Thumbs Up button.