Splunk Search

Convert Date to Day of Week

Splunkster45
Communicator

I have a Field that contains values in the YYYY-MM-DD. What's the best way to convert it to the day of week? For example if I had a field called ODATE=2015-01-27 then I'd want a field called ODAY_OF_WEEK=Tuesday.

Note- The 'timestamp' ODATE is not the actual timestamp for the log and so I can't use _time.

I've tried to used mktime and strftime, but I haven't figured it out, yet.

Thanks in advance!

Tags (2)
0 Karma
1 Solution

martin_mueller
SplunkTrust
SplunkTrust

This should do it:

... | eval ODAY_OF_WEEK = strftime(strptime(ODATE, "%Y-%m-%d"), "%A")

View solution in original post

martin_mueller
SplunkTrust
SplunkTrust

This should do it:

... | eval ODAY_OF_WEEK = strftime(strptime(ODATE, "%Y-%m-%d"), "%A")
Get Updates on the Splunk Community!

Detecting Brute Force Account Takeover Fraud with Splunk

This article is the second in a three-part series exploring advanced fraud detection techniques using Splunk. ...

Buttercup Games: Further Dashboarding Techniques (Part 9)

This series of blogs assumes you have already completed the Splunk Enterprise Search Tutorial as it uses the ...

Buttercup Games: Further Dashboarding Techniques (Part 8)

This series of blogs assumes you have already completed the Splunk Enterprise Search Tutorial as it uses the ...