Reporting

How to get saved search's last successful run time

angelinealex
Communicator
-----
-----
------
| fields totalrec, mydate
| search index=_internal savedsearch_name="anothersavedsearch" status="success" 
| stats max(_time) as lastrun 
| eval lastsearchdate = if(totalrec>0,strftime(lastrun,"%Y-%m-%d"),mydate) 
| table lastsearchdate 

My requirement is, if the totalrec is greater than zero, then save lastsearchdate as saved search's last successful runtime, else store mydate to lastsearchdate.

But i am getting no records when i run this saved search. Please help.

0 Karma

logloganathan
Motivator

Modify the 7th line
Eval lastsearcheddate=(strftime(lastrun,format),mydate) | where totalrec>0

It will work

0 Karma

angelinealex
Communicator

This part is not correct strftime(lastrun,format),mydate)
so it didnt work.

0 Karma

logloganathan
Motivator

eval lastsearcheddate = strftime( strptime( lastrun, "%Y-%m-%d" ), mydate)

Could you please try this command

0 Karma

p_gurav
Champion

Hi,

you can find out last run of search with below query:

index=_internal source="/opt/splunk/var/log/splunk/scheduler.log" savedsearch_name=<scheduled-search-name> | eval lastRun=_time | 
0 Karma

angelinealex
Communicator

Thank you, but this query doesnt satisfy my requirement with respect to totalrec which i have got from previous lines in the same query.

0 Karma

p_gurav
Champion

Can you try using subsearch for getting lastrun.

angelinealex
Communicator

I tried already, but really not sure how to do it and i wasn't success

0 Karma

angelinealex
Communicator

Fixed the issue with subsearch, Thank you.

0 Karma
Get Updates on the Splunk Community!

Webinar Recap | Revolutionizing IT Operations: The Transformative Power of AI and ML ...

The Transformative Power of AI and ML in Enhancing Observability   In the realm of IT operations, the ...

.conf24 | Registration Open!

Hello, hello! I come bearing good news: Registration for .conf24 is now open!   conf is Splunk’s rad annual ...

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...