Splunk Enterprise Security

How do you make a report of users using 'X' dashboard in Splunk?

manideep6669
Engager

Looking for the report of who are using X dashboard in Splunk.
Is there any Query for this?
Thanks in Advance

0 Karma

nadlurinadluri
Communicator

If you do have access to _internal logs you should be able to the below.... (note that you might need to do some modifications, run the query step by step and do the modifications accordingly)

index=_internal source=web_access.log /app/
| rex "(?:[^/\n]/){5}(?P[^/]+)[^/\n]/(?P\w+\s+)" -----> this is for extracting appname and viewname (please modify this accordingly, not sure why app_name & view_name is not being printed after ?P here)
| search app_name!="search" view_name!="search" app_name!="launcher"
|search sourcetype=splunk_web_access
| eval access_time =strftime(_time,"%Y-%d-%m %H:%M")
| table access_time,user,app_name,view_name
| rename app_name as "Application Name" view_name AS "Dashboard name" user as User
| replace "-" with "No User" in User

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

Splunk + ThousandEyes: Correlate frontend, app, and network data to troubleshoot ...

 Are you tired of troubleshooting delays caused by siloed frontend, application, and network data? We've got a ...

Splunk Observability for AI

Don’t miss out on an exciting Tech Talk on Splunk Observability for AI!Discover how Splunk’s agentic AI ...

🔐 Trust at Every Hop: How mTLS in Splunk Enterprise 10.0 Makes Security Simpler

From Idea to Implementation: Why Splunk Built mTLS into Splunk Enterprise 10.0  mTLS wasn’t just a checkbox ...