You can use the data from splunkd_access.log and get those metrics
source="*splunkd_access.log" "*/ui/views/*" | rex "\/ui\/views\/(?.*?)\?" | stats count by dashboard
Hi @lbogle
Just wanted to follow up with this post. Did @adityapavan18's answer below answer your question? If yes, please be sure to accept correct answers on your posts to resolve them so it's helpful for other users looking for the same solutions. Thanks!
You can use the data from splunkd_access.log and get those metrics
source="*splunkd_access.log" "*/ui/views/*" | rex "\/ui\/views\/(?.*?)\?" | stats count by dashboard
Would be wise to add
index="_internal"
Also, this search returns both GET and POST events for all dashboards. In my opinion you should only count POST events for dashboards.