Splunk Search

How to convert duration in seconds to [h]:mm:ss?

auaave
Communicator

Hi,

I have a table with duration in seconds, how can I convert it to [h]:mm:ss? I want it to count the number of hours even if it is more than 1 day. Thanks!

Here is my query.

| dedup IDEVENT
| where _time>relative_time(now(),"-4w@w")
| bin _time span=1w
| stats sum(DURATION) as eventduration by DESCRIPTION _time
0 Karma
1 Solution

harsmarvania57
Ultra Champion

Hi

Can you please try | eval time=strftime(_time, "%H:%M:%S") or you can try | eval time=tostring(_time,"duration")

So your query will be

 | dedup IDEVENT
 | where _time>relative_time(now(),"-4w@w")
 | bin _time span=1w
 | stats sum(DURATION) as eventduration by DESCRIPTION _time
 | eval time=strftime(_time, "%H:%M:%S")

and with second approach

 | dedup IDEVENT
 | where _time>relative_time(now(),"-4w@w")
 | bin _time span=1w
 | stats sum(DURATION) as eventduration by DESCRIPTION _time
 | eval time=tostring(_time,"duration")

View solution in original post

harsmarvania57
Ultra Champion

Hi

Can you please try | eval time=strftime(_time, "%H:%M:%S") or you can try | eval time=tostring(_time,"duration")

So your query will be

 | dedup IDEVENT
 | where _time>relative_time(now(),"-4w@w")
 | bin _time span=1w
 | stats sum(DURATION) as eventduration by DESCRIPTION _time
 | eval time=strftime(_time, "%H:%M:%S")

and with second approach

 | dedup IDEVENT
 | where _time>relative_time(now(),"-4w@w")
 | bin _time span=1w
 | stats sum(DURATION) as eventduration by DESCRIPTION _time
 | eval time=tostring(_time,"duration")

auaave
Communicator

@harsmarvania57 , thanks! The second approach works! 🙂

0 Karma

harsmarvania57
Ultra Champion

@auaave, Glad to hear that it worked, please accept my answer and upvote it. 🙂

0 Karma

p_gurav
Champion

Hi Auaave,

You can use strftime function using eval. For eg.
eval eventduration=strftime(eventduration,"%H:%M:%S")

0 Karma

auaave
Communicator

@p_gurav, thanks for your reply. 🙂

0 Karma
Get Updates on the Splunk Community!

Updated Team Landing Page in Splunk Observability

We’re making some changes to the team landing page in Splunk Observability, based on your feedback. The ...

New! Splunk Observability Search Enhancements for Splunk APM Services/Traces and ...

Regardless of where you are in Splunk Observability, you can search for relevant APM targets including service ...

Webinar Recap | Revolutionizing IT Operations: The Transformative Power of AI and ML ...

The Transformative Power of AI and ML in Enhancing Observability   In the realm of IT operations, the ...