I am want to get the list of dashboard which is not used by anyone for more than 90 days. i have tired to use the below query but didnt work well. | rest splunk_server=local "/servicesNS/-/-/data/ui/views" | rename title as dashboard | fields dashboard | eval accessed=0 | search NOT [ search index=_internal sourcetype=splunkd_ui_access earliest=-90d@d | rex field=uri "/app/[^/]+/(?<dashboard>[^?/\s]+)" | search NOT dashboard IN ("search", "home", "alert", "lookup_edit", "@go", "data_lab", "dataset", "datasets", "alerts", "dashboards", "reports") | stats count as accessed by dashboard | fields dashboard, accessed ] | stats sum(accessed) as total_accessed by dashboard | where total_accessed=0 | table dashboard
... View more