This is so helpful. We recently installed ITSI which caused us to go over new quote limits
|rest /servicesNS/-/-/saved/searches
| search disabled=0 is_scheduled=1
| table title cron_schedule next_scheduled_time
|convert mktime(next_scheduled_time) AS next_schedhuled_time_epoc timeformat="%F %T %Z"
| where now()>next_schedhuled_time_epoc
We used this to detect any searches that have gone stale
... View more