Splunk Search

How to convert DD/MM/YYY to MM/DD/YYY format?

griffinpair
Path Finder

I currently have dates from a log file coming in as 09/07/2018 (July 9, 2018) and they need to be formatted as 07/09/2018.

0 Karma
1 Solution

pradeepkumarg
Influencer

Convert it into a date type variable using strptime and then format it using stftime. Sample run anywhere search below.

|makeresults | eval DATE="09/07/2018" | eval DATE_NEW=strftime(strptime(DATE, "%d/%m/%Y"), "%m/%d/%Y")

View solution in original post

pradeepkumarg
Influencer

Convert it into a date type variable using strptime and then format it using stftime. Sample run anywhere search below.

|makeresults | eval DATE="09/07/2018" | eval DATE_NEW=strftime(strptime(DATE, "%d/%m/%Y"), "%m/%d/%Y")

Get Updates on the Splunk Community!

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!

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

New in Observability Cloud - Explicit Bucket Histograms

Splunk introduces native support for histograms as a metric data type within Observability Cloud with Explicit ...