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!

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 GA in US-AWS!

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 ...