Splunk Search

Convert time to epoch time & time zone

willadams
Contributor

In my index, I have a field that has been extracted for a "last checkin time". The time shown is GMT and I need to use this field when using a dashboard to accurately show data. I am having a problem with my strptime in that it is not working.

An example is an extracted field ==> 2020-02-13 05:00:29.0
The time is GMT (and it needs to be GMT+8)

I have done the following:

index=someindex source="mysource"
| eval epoch_time=strptime("last_checkin_time", "%Y-%m-%d %H:%M:%S.%3N")

I have tried adjusting the value of eval to use the %Q options but that has not been able to generate anew field that I can use. I have also tried to use %Z at the end of the strptime to try and force timezone but to no avail

I would like to use this time instead of the ingest time (or _time) to drive my dashboard.

Thanks in advance

Tags (1)
0 Karma

to4kawa
Ultra Champion
| eval epoch_time=strptime('last_checkin_time'." +0000", "%F %T.0 %z")

renjith_nair
Legend

@willadams ,

last_checkin_time in strptime shouldn't be in quotes(") which will treat it as a literal. Remove the quotes around it to treat it as variable.

i.e.

eval epoch_time=strptime(last_checkin_time, "%Y-%m-%d %H:%M:%S.%3N")
---
What goes around comes around. If it helps, hit it with Karma 🙂
0 Karma
Get Updates on the Splunk Community!

Enter the Splunk Community Dashboard Challenge for Your Chance to Win!

The Splunk Community Dashboard Challenge is underway! This is your chance to showcase your skills in creating ...

.conf24 | Session Scheduler is Live!!

.conf24 is happening June 11 - 14 in Las Vegas, and we are thrilled to announce that the conference catalog ...

Introducing the Splunk Community Dashboard Challenge!

Welcome to Splunk Community Dashboard Challenge! This is your chance to showcase your skills in creating ...