Hi @Learner, You don't need to use it, but you can find the searches for your need and use it outside the app. So e.g. for the dashboard in time you can use a search like this (this one or something similar): index="_internal" source=*access.log user!="-" */app/*
| rex field=referer "/en-US/app/(?<app>[^/]+)/(?<dashboard>[^?/\s]+)"
| search dashboard!="job_management" dashboard!="dbinfo" dashboard!="*en-US" dashboard!="search" dashboard!="home" dashboard!="alerts" dashboard!="alert" dashboard!="dashboards" dashboard!="reports" dashboard!="report"
| timechart span=1h dc(dashboard) e.g. to have the top 10 used dashboards, you can use something similar to this: index="_internal" source=*access.log user!="-" */app/*
| rex field=referer "/en-US/app/(?<app>[^/]+)/(?<dashboard>[^?/\s]+)"
| search dashboard!="job_management" dashboard!="dbinfo" dashboard!="*en-US" dashboard!="search" dashboard!="home" dashboard!="alerts" dashboard!="alert" dashboard!="dashboards" dashboard!="reports" dashboard!="report"
| top 10 dashboard this kind of dashboard are very useful to understand how to do a thing for your need not to be used as they are. Ciao. Giuseppe
... View more