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

Community access restored to most members


I've been able to make some changes to restore community engagement access to most members.

Follow the blog post for up to date information



We thank you for your patience while we get this fixed


How can i check users logged into controller

raghu.vivek
Explorer

Hello , 

 

i wanted to know how many users out of the total numbers logged into app dynamics controller in last 10 days , is there a way to get list of users logged into app dynamics controller for a specific period of time

1 REPLY 1

Ravi.Biradar
AppDynamics Team

From the controller UI we don't have option to see who all logged in, but we can query the database to get the list of user logged in.

 

Please run below query to get the users list.

select from_unixtime(ts_ms/1000),account_name,user_name,action from controller_audit where action like '%login%' and user_name!='system';