Reporting

retrieve the date of the last execution of a scheduled search

RiccardoV
Communicator

Hi,
I'm running Splunk 5.0.5 and I'm looking for a way to retrieve the date of the last execution of a scheduled search, because I want to print that date on a dashboard, writing something like "last update: xxxx".

I know that I can see that date from the manager panel, but I'm looking for a way to insert it into a dashboard 🙂

thanks

1 Solution

richgalloway
SplunkTrust
SplunkTrust

Perhaps something like this?

index=_internal source="/opt/splunk/var/log/splunk/scheduler.log" savedsearch_name=<scheduled-search-name> | eval lastRun=_time | 
---
If this reply helps you, Karma would be appreciated.

View solution in original post

splunk6161
Path Finder

On splunk 7.1.2 doesn't work, can anyone check it?

0 Karma

memarshall63
Communicator

On 7.2, one way..

index=_internal sourcetype=scheduler savedsearch_name="Bucket Copy Trigger" 
| stats latest(_time) as late_time 
| eval late_time_str = strftime(late_time,"%c")
0 Karma

splunk6161
Path Finder

Doesn't work already when i write index=_internal sourcetype=scheduler
My splunk enterprise upgraded to 7.3.0
How sourcetype i have only these:
dbx*
splunkd

0 Karma

memarshall63
Communicator

Aahh.. sure.. Any base search will work as long as you have events in it. So try..

index=_internal sourcetype=splunkd
 | stats latest(_time) as late_time 
 | eval late_time_str = strftime(late_time,"%c")

I don't know about 7.3.0.. haven't get there yet, but I imagine it will work.

This returns the latest time in a set of records. If you're specifically looking for the last run of a saved search you'll have to get access to index=_internal sourcetype=scheduler. It's possible that your user has been excluded from that data.

0 Karma

splunk6161
Path Finder

I tried with admin and i have same result so i can't filter sourcetype by scheduler.

0 Karma

richgalloway
SplunkTrust
SplunkTrust

Perhaps something like this?

index=_internal source="/opt/splunk/var/log/splunk/scheduler.log" savedsearch_name=<scheduled-search-name> | eval lastRun=_time | 
---
If this reply helps you, Karma would be appreciated.

RiccardoV
Communicator

thanks richgalloway, I started from your hint and I resolve with:

index=_internal savedsearch_id="user;apps;label" | stats max(_time) AS lastRun | convert ctime(lastRun)

thanks again 🙂

0 Karma
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...