What users use the dashboard, and the use recurrency?
I don't know, maybe through a log, or maybe any of you have or already create something that help with this.
I appreciate your help.
No built-in way, unfortunately.
But you can submit an environment review (Customer Portal > technical support > Orion Insights environment reviews) There is a top 5 URLs by #requests.
This is scraped via IIS logs I believe. So if you wanted to go further than 5 you could write a script parser to count occurrences. I actually have a tool/script that can count regex match occurrences in any chosen file. I'm not sure how I could share it though.
I do the same, use powershell scripts to parse the logs for things that I think are relevant. The big caution there is that Orion logs are super verbose and it can take a lot of time and compute to crunch through them all. Alternatively you could use a log aggregation tool and run reports out of those.
Not exactly what you requested but here is a list of the users that logged in recently. You can add real names in the Case statement.
SELECT tolocal(TimeLoggedUtc) AS [Last Login],CASE WHEN AccountID LIKE 'DOMAIN\USER1' THEN 'Bob Marley' WHEN AccountID LIKE 'DOMAIN\USER1' THEN 'George Smith' ELSE AccountIDEND AS [Name] , AuditEventMessage FROM Orion.AuditingEvents AS AE WHERE daydiff(timeloggedutc ,getutcdate())<1 AND AE.AuditingActionType.ActionType = 'Orion.UserLogin' AND AccountID NOT LIKE '%_system%' AND AccountID NOT LIKE '%websitemaintenance_user%' ORDER BY TimeLoggedUtc DESC</pre>