Splunk Search

Convert time

chadman
Path Finder

I'm trying to rename _time to Time and it's changing the format. I used ctime to fix it, but I only want to display it in the HH:MM format. I can I covert my ctime to only show HH:MM?

        | eval Time = _time
        | table Time "Idle Time" | convert ctime(Time)
0 Karma
1 Solution

sundareshr
Legend

Try this

| eval Time=strftime(_time, "%H:%M") | table Time, "Idle Time"

View solution in original post

sowings
Splunk Employee
Splunk Employee

_time is always in Unix epoch time. If you leave that field name alone, it will "magically" convert it to human readable for you. Using the convert function or the strftime eval function provides you with the option to "name your format".

sundareshr
Legend

Try this

| eval Time=strftime(_time, "%H:%M") | table Time, "Idle Time"

chadman
Path Finder

Thanks, that did it!

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