Splunk AppDynamics

How to find current logged on users

CommunityUser
Splunk Employee
Splunk Employee

How to find current logged on users in appdynamics

Labels (3)
Tags (2)
0 Karma

iamryan
Community Manager
Community Manager

Hi @Satish.Babu

Were you able to look into what @Sunil.Agarwal mentioned above? 

0 Karma

iamryan
Community Manager
Community Manager

Hi @Satish.Babu,

Given how old this post is, it's unlikely to get a reply. I'm searching for any relevant existing content for you. If I find anything I'll share it here. If you happen to find any info, can you please also share it?

If you don't have any luck, you can create a ticket with AppDynamics Support (for contractual customers only) How do I submit a Support ticket? An FAQ 

0 Karma

Satish_Babu
New Member

Where we have to run the abv query 

0 Karma

Sunil_Agarwal
Communicator

If you are using an on-premises controller, you can log in to your database and execute this query. For those using a SAAS controller, enabling the Audit Report feature is recommended. Below are articles providing more detailed information on both scenarios.

https://docs.appdynamics.com/appd/onprem/23.x/latest/en/controller-deployment/administer-the-control...

0 Karma

Pratik_Maskey
Communicator

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

0 Karma
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.
Get Updates on the Splunk Community!

Tech Talk Recap | Mastering Threat Hunting

Mastering Threat HuntingDive into the world of threat hunting, exploring the key differences between ...

Observability for AI Applications: Troubleshooting Latency

If you’re working with proprietary company data, you’re probably going to have a locally hosted LLM or many ...

Splunk AI Assistant for SPL vs. ChatGPT: Which One is Better?

In the age of AI, every tool promises to make our lives easier. From summarizing content to writing code, ...