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!

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