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!

See your relevant APM services, dashboards, and alerts in one place with the updated ...

As a Splunk Observability user, you have a lot of data you have to manage, prioritize, and troubleshoot on a ...

Index This | What goes away as soon as you talk about it?

May 2025 Edition Hayyy Splunk Education Enthusiasts and the Eternally Curious!  We’re back with this month’s ...

What's New in Splunk Observability Cloud and Splunk AppDynamics - May 2025

This month, we’re delivering several new innovations in Splunk Observability Cloud and Splunk AppDynamics ...