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!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...