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!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...