hi all,
i have multiple users and multiple dashboard studio.
i want to check which user is downloading which dashboard.
how can i do that ?
@super_saiyan - Try the below search: (Logs just provide which dashboard is downloaded (PDF) but not who downloaded/)
index=_internal sourcetype=splunk_pdfgen
Additionally, if you want to find out who accessed the dashboard with user information then you can use the below search:
index=_internal sourcetype=splunkd_ui_access "/data/ui/views/"
| stats count by user, uri_path
Consider upvoting if it helps!!!