Splunk Search

Conversion from string to date

c_sahil
New Member

I am having a field deliveryExpiry (String type) in my log and I want to compare whether the expiry is before the current date or after.Below I am giving the sample log

deliveryExpiry=Wed Dec 25 18:30:00 GMT 2013 deliveryNumber=110 MESSAGE=delivered

i tried something like this

| eval expiryDate=strptime(deliveryExpiry,"%a %b %d %H:%M:%S %Z %Y") | eval current=now() | where expiryDate>strptime(current,"%a %b %d %H %M %S %Z %Y")

but No luck.can anyone please help

Tags (2)
0 Karma

richgalloway
SplunkTrust
SplunkTrust

The now() function returns an integer so there's no need to strptime() it. Using 'where expiryDate>current' should do the trick.

---
If this reply helps you, Karma would be appreciated.

richgalloway
SplunkTrust
SplunkTrust

Have you tried replacing 'where expiryDate=date' with 'table expiryDate,date' to see why they don't match?

---
If this reply helps you, Karma would be appreciated.
0 Karma

c_sahil
New Member

when i tried the below query then also it didn't work..

| eval expiryDate=strptime(deliveryExpiry,"%a %b %d %H:%M:%S %Z %Y") | eval date=strptime(deliveryExpiry,"%a %b %d %H:%M:%S %Z %Y") | where expiryDate=date

0 Karma

c_sahil
New Member

It didn't worked. is it because i am not converting the date properly in expiryDate??

0 Karma
Get Updates on the Splunk Community!

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, ...

Introducing Splunk Enterprise 9.2

WATCH HERE! Watch this Tech Talk to learn about the latest features and enhancements shipped in the new Splunk ...

Adoption of RUM and APM at Splunk

    Unleash the power of Splunk Observability   Watch Now In this can't miss Tech Talk! The Splunk Growth ...