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!

Splunk Observability Cloud's AI Assistant in Action Series: Auditing Compliance and ...

This is the third post in the Splunk Observability Cloud’s AI Assistant in Action series that digs into how to ...

Splunk Community Badges!

  Hey everyone! Ready to earn some serious bragging rights in the community? Along with our existing badges ...

What You Read The Most: Splunk Lantern’s Most Popular Articles!

Splunk Lantern is a Splunk customer success center that provides advice from Splunk experts on valuable data ...