Splunk Search

Convert TimeFormat

hartfoml
Motivator

I have an event field called `LastBootUpTime=20120119121719.125000-360'

I am trying to convert this to a more readable format by using this convert command

| convert timeformat="%m-%d-%Y %H:%M:%S" ctime(LastBootUpTime) AS BootTime

this is not working. What am I missing??

Tags (2)
0 Karma
1 Solution

bojanz
Communicator

If I'm not wrong, convert needs epoch time for ctime().
So use strptime to convert to epoch time this first:

| eval temp=strptime(LastBootUpTime,"%Y%m%d%H%M%S") | convert timeformat="%m-%d-%Y %H:%M:%S" ctime(temp) AS BootTime

This will return BootTime in a human readable format, as specified in the timeformat parameter.

View solution in original post

bojanz
Communicator

If I'm not wrong, convert needs epoch time for ctime().
So use strptime to convert to epoch time this first:

| eval temp=strptime(LastBootUpTime,"%Y%m%d%H%M%S") | convert timeformat="%m-%d-%Y %H:%M:%S" ctime(temp) AS BootTime

This will return BootTime in a human readable format, as specified in the timeformat parameter.

hartfoml
Motivator

That was the answer... howd you get so smart 🙂

0 Karma
Get Updates on the Splunk Community!

Welcome to the Splunk Community!

(view in My Videos) We're so glad you're here! The Splunk Community is place to connect, learn, give back, and ...

Tech Talk | Elevating Digital Service Excellence: The Synergy of Splunk RUM & APM

Elevating Digital Service Excellence: The Synergy of Real User Monitoring and Application Performance ...

Adoption of RUM and APM at Splunk

    Unleash the power of Splunk Observability   Watch Now In this can't miss Tech Talk! The Splunk Growth ...