Splunk Search

Can we pull system time in 'If' Condition

amithhegde
New Member

I have an alert created where I need to display current system time. There is an If condition in alert which looks something like below.

eval checkstatus=if(isnull(status), "Program has not started at @Current System Time@", "OK")

@Current System Time@ is where i want to have my system time displayed.

Is there a way this can be achieved?

Tags (1)
0 Karma

Ayn
Legend

now() should be what you're looking for I think?

eval checkstatus=if(isnull(status), "Program has not started at " . now(), "OK")

This gives you the epoch value which might not be what you want, for something more humanly readable you could do

eval checkstatus=if(isnull(status), "Program has not started at " . strftime(now(),"%+"), "OK")
0 Karma

martin_mueller
SplunkTrust
SplunkTrust

You can do this:

eval checkstatus=if(isnull(status), "Program has not started at ".strftime(now(), "%F %T"), "OK")
0 Karma
Get Updates on the Splunk Community!

Routing logs with Splunk OTel Collector for Kubernetes

The Splunk Distribution of the OpenTelemetry (OTel) Collector is a product that provides a way to ingest ...

Welcome to the Splunk Community!

(view in My Videos) We're so glad you're here! The Splunk Community is place to connect, learn, give back, and ...

Tech Talk | Elevating Digital Service Excellence: The Synergy of Splunk RUM & APM

Elevating Digital Service Excellence: The Synergy of Real User Monitoring and Application Performance ...