Dashboards & Visualizations

How to delete many unused dashboards?

grivera_kudaw
Explorer

Hi,
I need help.
My question is related to unused dashboards.

Curently I have more than 2000 dashboard unused, I need a method to disable and delete from my Splunk Cluster.
Did anyone apply a procedure to remove a large number of panels from the Splunk Cluster?
wich steps I need to delete thats dashboards?

0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi @grivera_kudaw,
you can delete dashboards from UI interface as an administrator.

My hint is to search in _internal how long they aren't used:

 index="_internal" user!="-"  sourcetype=splunkd_ui_access "en-US/app"  
| rex field=uri "en-US/app/(?<app>[^/]+)/(?<dashboard>[^?/\s]+)"
| search  dashboard!="search" dashboard!="home" dashboard!="alert" dashboard!="lookup_edit" dashboard!="@go" dashboard!="data_lab" dashboard!="dataset" dashboard!="datasets" dashboard!="alerts" dashboard!="dashboards" dashboard!="reports" dashboard!="report" 

or

 index="_internal" user!="-"  sourcetype=splunkd_ui_access "en-US/app"  
| rex field=uri "en-US/app/(?<app>[^/]+)/(?<dashboard>[^?/\s]+)"
| search  dashboard="my_unused_dashboard"

so you can be sure that the dashboard is unused in the last period.

To be more sure you could also change access rights on the deleting dashboards (recording old rights) and wait for a period that none shous!
Then you can delete them from UI interface as an administrator, eventually copying sources in a test off-line file.

Ciao.
Giuseppe

Get Updates on the Splunk Community!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...