Getting Data In

How to convert date format?

dhiraj
Loves-to-Learn Lots

Hi ,

In splunk query I need to convert date format as below .

Current format - 07/09/23

Required Format : 2023-09-07

Labels (1)
0 Karma

richgalloway
SplunkTrust
SplunkTrust

Use the strptime function to convert the current format into epoch form then use strftime to convert that into the required format.  The two functions can be used in a single eval.

| eval timefield=strftime(strptime(timefield, "%d/%m/%y"), "%Y-%m-%d")

 

---
If this reply helps you, Karma would be appreciated.

gcusello
SplunkTrust
SplunkTrust

Hi @dhiraj ,

you have to use the eval command with the strftime and strptime options, like this:

| eval new_date=strftime(strptime(date,"%d/0m/%y"),"%Y-%m-%d")

Ciao.

Giuseppe

Get Updates on the Splunk Community!

Splunk Mobile: Your Brand-New Home Screen

Meet Your New Mobile Hub  Hello Splunk Community!  Staying connected to your data—no matter where you are—is ...

Introducing Value Insights (Beta): Understand the Business Impact your organization ...

Real progress on your strategic priorities starts with knowing the business outcomes your teams are delivering ...

Enterprise Security (ES) Essentials 8.3 is Now GA — Smarter Detections, Faster ...

As of today, Enterprise Security (ES) Essentials 8.3 is now generally available, helping SOC teams simplify ...