Splunk Search

How do I properly convert to UNIX time using strptime with this specific example?

russell120
Communicator

The new myTimefield is blank for some reason -- anyone know why? Consider the below code I'm using:

|makeresults
|eval originalTime = "01/05/19"
|eval myTime = strptime(originalTime, "%m/%d/%Y")
|table originalTime myTime

Oddly enough, it DOES work if I use |eval originalTime = "11:55" with eval myTime = strptime(originalTime, "%H:%M"). Why won't my original query work? Because of this, I'm unable to convert time to UNIX time in my CSVs.

0 Karma
1 Solution

skoelpin
SplunkTrust
SplunkTrust

Your string format time is wrong. Try this

|makeresults
 |eval originalTime = "01/05/19"
 |eval myTime = strptime(originalTime, "%m/%d/%y")
 |table originalTime myTime

Your upper case %Y is for year with century (i.e. 2019) . You specified without century (i.e. 19) which is %y

View solution in original post

prakash007
Builder

It should be lowercase y in the format...

| makeresults 
| eval originalTime = "01/05/19" 
| eval myTime=strptime(originalTime,"%m/%d/%y")
| table originalTime myTime

With the strptime function, you must specify the time format of the string X so that the function can convert the string time into the correct UNIX time.
http://docs.splunk.com/Documentation/Splunk/7.2.1/SearchReference/DateandTimeFunctions#strptime.28X....

0 Karma

skoelpin
SplunkTrust
SplunkTrust

Your string format time is wrong. Try this

|makeresults
 |eval originalTime = "01/05/19"
 |eval myTime = strptime(originalTime, "%m/%d/%y")
 |table originalTime myTime

Your upper case %Y is for year with century (i.e. 2019) . You specified without century (i.e. 19) which is %y

russell120
Communicator

Ahh you're right, I missed that! Thanks!

Get Updates on the Splunk Community!

Splunk Mobile: Your Brand-New Home Screen

Meet Your New Mobile Hub  Hello Splunk Community!  Staying connected to your data—no matter where you are—is ...

Introducing Value Insights (Beta): Understand the Business Impact your organization ...

Real progress on your strategic priorities starts with knowing the business outcomes your teams are delivering ...

Enterprise Security (ES) Essentials 8.3 is Now GA — Smarter Detections, Faster ...

As of today, Enterprise Security (ES) Essentials 8.3 is now generally available, helping SOC teams simplify ...