Track usage of Platform Analytics dashboard
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-05-2024 04:13 AM
Hi,
How we can track usage of Platform Analytics dashboards.
We want to see, who all are the users are using dashboard's of Platform Analytics.
Where we can get this information?
Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-10-2025 04:16 PM
I would recommend looking into the User Experience Analytics dashboard/experience
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
Did you ever find a solution to this? We were able to set up scripts to write to a new table for legacy dashboard views but not with Platform Analytics dashboards. User Experience Analytics Dashboard does not help at all and does not provide a good solution. We just need a table view of Who, What Dashboard, When.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
Curious about your use case but this info is available via ux analytics
- Go to the uxa workspace and select the PA app
- Go to events
- Select the dashboard next experience
- Export the data with whatever filters you want and you'll get a csv download of the data
- The events will have params: hashed user id, event time and dashboard sysid
The hashed user id is the sysid hashed with sha256 and no salt so you can hash (glidedigest eg) all the users sysids on your instance to figure out the corresponding sys_user, see:
This will answer the who, what and the when (when the dashboards are viewed in the pa workspace). If you need the data in servicenow for reports, reverse engineer the request when you click export data and turn it into a remote table for example.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2 weeks ago
Thank you. This gets me closer but the exported data is still hashed so I can't see who and the dashboards are sys ids. If the data here was in a table that translated dashboard sys id into name and hashed user id into user that would be perfect. I can work with my dev team possibly to get something created from this data. Thanks!