Splunk Search

Can you help me convert a timestamp to another timestamp?

ElBorni96
Engager

Hi all,

I need to convert this timestamp

2019-03-13T00:35:10+0100

to this

13-03-2019 00:35:10

How can I do this?

0 Karma
1 Solution

adonio
Ultra Champion

try this everywhere:

| makeresults count=1
| eval time = "2019-03-13T00:35:10+0100"
| eval time_epoch = strptime(time, "%Y-%m-%dT%H:%M:%S")
| eval desired_time_format = strftime(time_epoch, "%d-%m-%Y %H:%M:%S")

hope it helps

View solution in original post

0 Karma

adonio
Ultra Champion

try this everywhere:

| makeresults count=1
| eval time = "2019-03-13T00:35:10+0100"
| eval time_epoch = strptime(time, "%Y-%m-%dT%H:%M:%S")
| eval desired_time_format = strftime(time_epoch, "%d-%m-%Y %H:%M:%S")

hope it helps

0 Karma

ElBorni96
Engager

Thanks @adonio,

I solved using

| eval Last_Event_Time = strptime(Last_Event_Time, "%Y-%m-%dT%H:%M:%S") 
| eval Last_Event_Time = strftime(Last_Event_Time, "%d-%m-%Y %H:%M:%S")

Best Regards

0 Karma

adonio
Ultra Champion

@ElBorni96
kindly accept the answer so others will know it works for you

0 Karma
Get Updates on the Splunk Community!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...