Splunk Search

How to convert a date time field to epoch time?

splunker9999
Path Finder

Hi,

I am looking to format my current time to epoch time (as we need to calculate some math function on time)

Time format for incidentEndTimeStr looks like this: 4/11/16 2:52

And used the eval command and strptime function below to change the format, but it doesn't work. Can you please assist?

eval incidentEndTime = strptime(incidentEndTimeStr, "%m/%d/%Y %I:%M")

OR

eval incidentEndTime = strptime(incidentEndTimeStr, "%m/%d/%Y %H:%M")

Thanks

0 Karma

gcusello
SplunkTrust
SplunkTrust

The problem is the year that it's composed by only two digits, so you have to use "%y" instead "%Y".
Bye.
Giuseppe

gcusello
SplunkTrust
SplunkTrust

if you're satisfied of the answer, please, accept the answer.
Bye.
Giuseppe

0 Karma

sundareshr
Legend

Try this

strptime(incidentEndTimeStr, "%-m/%-d/%y %-H:%-M") 

Here's a working sample

| makeresults | eval x="4/11/16 2:52" | eval t=strptime(x, "%-m/%-d/%y %-H:%-M") | eval z=strftime(t, "%-m/%-d/%y %-H:%-M") | table x t z
Get Updates on the Splunk Community!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

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