Knowledge Management

How to track scheduled search which are using "All Time" time window?

athorat
Communicator

We have a few users scheduling searches using "all time", time frame.

How can I track those knowledge objets and delete / Pause them?

Labels (1)
0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi @athorat,

adding a bit to the perfect answer of @danspav, you could disable the all time searches for the role of these users putting a limit to the time frame that they can use.

Ciao.

Giuseppe

0 Karma

danspav
SplunkTrust
SplunkTrust

Hi @athorat,

You can see all the scheduled searches that are enabled with an earliest time as "all time" with the below:

 

 

| rest /servicesNS/-/-/saved/searches search="is_scheduled=1" search="disabled=0" search="dispatch.earliest_time=0"  timeout=0
| table dispatch.earliest_time, title, eai:acl.app, eai:acl.owner, search

 

 

 

However, people can get around this by:

  • Using the term "earliest=-10y" in their searches
  • Using 1 instead of 0 for the dispatch.earliest_time
  • Hiding the earliest/latest in a macro or subsearch

But that should find the immediate culprits for you.

 

You can also look in the _audit index to find searches being run with all time:

 

 

index=_audit action=search info=completed search_et IN(0,"N/A")
| stats count, sum(total_run_time) as total_run_time values(provenance) as provenance by app, user
| fieldformat total_run_time=tostring(total_run_time,"duration")
| sort - total_run_time

 

 

There are ways to avoid appearing in this search, but that should give you a good starting point.

Cheers,
Daniel

0 Karma
Get Updates on the Splunk Community!

Fun with Regular Expression - multiples of nine

Fun with Regular Expression - multiples of nineThis challenge was first posted on Slack #regex channel ...

[Live Demo] Watch SOC transformation in action with the reimagined Splunk Enterprise ...

Overwhelmed SOC? Splunk ES Has Your Back Tool sprawl, alert fatigue, and endless context switching are making ...

What’s New & Next in Splunk SOAR

Security teams today are dealing with more alerts, more tools, and more pressure than ever.  Join us on ...