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!

Detecting Brute Force Account Takeover Fraud with Splunk

This article is the second in a three-part series exploring advanced fraud detection techniques using Splunk. ...

Buttercup Games: Further Dashboarding Techniques (Part 9)

This series of blogs assumes you have already completed the Splunk Enterprise Search Tutorial as it uses the ...

Buttercup Games: Further Dashboarding Techniques (Part 8)

This series of blogs assumes you have already completed the Splunk Enterprise Search Tutorial as it uses the ...