Getting Data In

Is there any way to list all the saved searches in Splunk?

praveenbandi
Explorer

Hi Splunkers,

Is there any way to list all the saved searches in Splunk? I want to export the saved searches details along with the user and scheduled time and etc.

1 Solution

vasanthmss
Motivator

Hi Praveenbandi

Below rest command will help you to get all secheduled searches, to list all the searches run the second search

| rest /servicesNS/-/-/saved/searches  | search is_scheduled=1  | table title,  cron_schedule next_scheduled_time eai:acl.owner  actions eai:acl.app action.email action.email.to dispatch.earliest_time dispatch.latest_time search *

Search to get all saved searches.

| rest /servicesNS/-/-/saved/searches  | table title,   cron_schedule next_scheduled_time eai:acl.owner  actions eai:acl.app action.email action.email.to dispatch.earliest_time dispatch.latest_time search *

to know all the users and their scheduled searches.

| rest /servicesNS/-/-/saved/searches  | search is_scheduled=1   | stats values(eai:acl.app) as application c by title, eai:acl.owner | fields - c
V

View solution in original post

vasanthmss
Motivator

Hi Praveenbandi

Below rest command will help you to get all secheduled searches, to list all the searches run the second search

| rest /servicesNS/-/-/saved/searches  | search is_scheduled=1  | table title,  cron_schedule next_scheduled_time eai:acl.owner  actions eai:acl.app action.email action.email.to dispatch.earliest_time dispatch.latest_time search *

Search to get all saved searches.

| rest /servicesNS/-/-/saved/searches  | table title,   cron_schedule next_scheduled_time eai:acl.owner  actions eai:acl.app action.email action.email.to dispatch.earliest_time dispatch.latest_time search *

to know all the users and their scheduled searches.

| rest /servicesNS/-/-/saved/searches  | search is_scheduled=1   | stats values(eai:acl.app) as application c by title, eai:acl.owner | fields - c
V
Get Updates on the Splunk Community!

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 ...

New in Observability Cloud - Explicit Bucket Histograms

Splunk introduces native support for histograms as a metric data type within Observability Cloud with Explicit ...