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!

.conf24 | Registration Open!

Hello, hello! I come bearing good news: Registration for .conf24 is now open!   conf is Splunk’s rad annual ...

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...

Introducing the 2024 SplunkTrust!

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