Splunk Search

How to convert large epoch time to hours minutes and seconds ?

patra966
Path Finder

I want to get the result of large epoch time to hours minutes and seconds.

Ex: Epoch time : 9386717.000000
Hours minutes seconds: 2607:25:17

How can I get the result?

Thanks in Advance.

0 Karma
1 Solution

vnravikumar
Champion

Hi

Check this

| makeresults 
| eval total_seconds="9386717.000000" 
| eval temp =tostring(total_seconds, "duration") 
| rex field=temp "((?<days>^[^+]+)\+){0,1}(?P<hour>[^:]+):(?P<minutes>[^:]+):(?P<seconds>[^.]+)" 
| eval day_to_hour=if(days>0,days*24+hour,days) 
| eval output=if(days>0,day_to_hour.":".minutes.":".seconds,hour.":".minutes.":".seconds) 
| table output

View solution in original post

to4kawa
Ultra Champion
| makeresults 
| eval total_seconds="9386717.000000" 
| eval Hours=floor(total_seconds / 60 /60), Minutes=floor((total_seconds%Hours)/60), Seconds=floor(total_seconds % 60)

How to convert large epoch time to hours minutes and seconds ?
→ How to convert huge seconds to hours minutes and seconds?

0 Karma

vnravikumar
Champion

Hi

Check this

| makeresults 
| eval total_seconds="9386717.000000" 
| eval temp =tostring(total_seconds, "duration") 
| rex field=temp "((?<days>^[^+]+)\+){0,1}(?P<hour>[^:]+):(?P<minutes>[^:]+):(?P<seconds>[^.]+)" 
| eval day_to_hour=if(days>0,days*24+hour,days) 
| eval output=if(days>0,day_to_hour.":".minutes.":".seconds,hour.":".minutes.":".seconds) 
| table output

to4kawa
Ultra Champion

https://www.epochconverter.com/

your string is not epoch time, please check and correct your question.

0 Karma
Get Updates on the Splunk Community!

Modern way of developing distributed application using OTel

Recently, I had the opportunity to work on a complex microservice using Spring boot and Quarkus to develop a ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had 3 releases of new security content via the Enterprise Security ...

Archived Metrics Now Available for APAC and EMEA realms

We’re excited to announce the launch of Archived Metrics in Splunk Infrastructure Monitoring for our customers ...