<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Convert Seconds To Hours, Minutes, Seconds and Milliseconds in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Convert-Seconds-To-Hours-Minutes-Seconds-and-Milliseconds/m-p/269408#M81039</link>
    <description>&lt;P&gt;Hi, thank you for this, and my apologies for not replying sooner.&lt;/P&gt;

&lt;P&gt;I've tried the code you kindly provided and unfortunately it doesn't work. Irrespective of the time in seconds it adds and hour onto each time.&lt;/P&gt;

&lt;P&gt;Many thanks and kind regards&lt;/P&gt;

&lt;P&gt;Chris&lt;/P&gt;</description>
    <pubDate>Fri, 05 Feb 2016 12:01:21 GMT</pubDate>
    <dc:creator>IRHM73</dc:creator>
    <dc:date>2016-02-05T12:01:21Z</dc:date>
    <item>
      <title>Convert Seconds To Hours, Minutes, Seconds and Milliseconds</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Convert-Seconds-To-Hours-Minutes-Seconds-and-Milliseconds/m-p/269400#M81031</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;I wonder whether someone may be able to help me please.&lt;/P&gt;

&lt;P&gt;Using a solution I found &lt;A href="https://answers.splunk.com/answers/61652/convert-seconds-into-hours-minutes-and-seconds.html"&gt;here&lt;/A&gt; I'm converting a field which contains seconds to 'hour, minutes and seconds'.&lt;/P&gt;

&lt;P&gt;The conversion works fine, but for example the results are as follows:&lt;/P&gt;

&lt;P&gt;00h 00min 16s.611000&lt;/P&gt;

&lt;P&gt;I'd like to change this so it becomes 00h 00min 16s.61ms i.e. to two decimal places and to show the last value as milliseconds.&lt;/P&gt;

&lt;P&gt;I just wondered whether someone may be able to show me how I may be able to do this please.&lt;/P&gt;

&lt;P&gt;Many thanks and kind regards&lt;/P&gt;

&lt;P&gt;Chris&lt;/P&gt;</description>
      <pubDate>Thu, 04 Feb 2016 14:09:48 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Convert-Seconds-To-Hours-Minutes-Seconds-and-Milliseconds/m-p/269400#M81031</guid>
      <dc:creator>IRHM73</dc:creator>
      <dc:date>2016-02-04T14:09:48Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Seconds To Hours, Minutes, Seconds and Milliseconds</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Convert-Seconds-To-Hours-Minutes-Seconds-and-Milliseconds/m-p/269401#M81032</link>
      <description>&lt;P&gt;Hi IRHM73,&lt;/P&gt;

&lt;P&gt;can you provide your search, because the link provides multiple different approaches.&lt;/P&gt;

&lt;P&gt;cheers, MuS&lt;/P&gt;</description>
      <pubDate>Thu, 04 Feb 2016 14:21:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Convert-Seconds-To-Hours-Minutes-Seconds-and-Milliseconds/m-p/269401#M81032</guid>
      <dc:creator>MuS</dc:creator>
      <dc:date>2016-02-04T14:21:37Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Seconds To Hours, Minutes, Seconds and Milliseconds</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Convert-Seconds-To-Hours-Minutes-Seconds-and-Milliseconds/m-p/269402#M81033</link>
      <description>&lt;P&gt;Are you looking for something like &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;eval time_field=strftime(&amp;lt;your time field&amp;gt;, "%Hh %Mm %Ss %2Nms")
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 04 Feb 2016 14:25:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Convert-Seconds-To-Hours-Minutes-Seconds-and-Milliseconds/m-p/269402#M81033</guid>
      <dc:creator>renjith_nair</dc:creator>
      <dc:date>2016-02-04T14:25:09Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Seconds To Hours, Minutes, Seconds and Milliseconds</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Convert-Seconds-To-Hours-Minutes-Seconds-and-Milliseconds/m-p/269403#M81034</link>
      <description>&lt;P&gt;Hi @MuS, thank you for coming back to me with this.&lt;/P&gt;

&lt;P&gt;My full query is:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;|rest /services/search/jobs
|rename custom.search as customSearch
|search NOT author="splunk-system-user"
|eval SearchString=if(isnotnull(customSearch),customSearch,eventSearch)
|search SearchString!=""
|addtotals fieldname=duration *duration_secs
|eval groupduration=case(duration&amp;lt;=300, "Less Than 5 Minutes", duration&amp;gt;300 AND duration&amp;lt;=600, "Between 5 and 10 Minutes", duration&amp;gt;600 AND duration&amp;gt;=1200, "Between 10 and 20 Minutes", duration&amp;gt;1200, "Greater Than 20 Minutes" )
|convert rmunit(duration) as numSecs
|eval stringSecs=tostring(numSecs,"duration")
|eval stringSecs = replace(stringSecs,"(\d+)\:(\d+)\:(\d+)","\1h \2min \3s")
|eval earliestTime=strptime(earliestTime, "%Y-%m-%dT%H:%M:%S")|convert timeformat="%d/%b/%Y" ctime(earliestTime)
|eval latestTime=strptime(latestTime, "%Y-%m-%dT%H:%M:%S")|convert timeformat="%d/%b/%Y" ctime(latestTime)
|eval daterange= "From: ".earliestTime.", To: ".latestTime
|makemv delim=", " daterange
|sort +author
|table author,SearchString , daterange, request.earliest_time, request.latest_time, duration, stringSecs
|rename author as "Author", SearchString as "Search Performed", earliestTime as "Earliest Date Used", latestTime as "Latest Date Used", request.earliest_time as "Earliest Time Query Setting", request.latest_time as "Latest Time Query Setting", stringSecs as "Query Runtime"
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Many thanks and kind regards&lt;/P&gt;

&lt;P&gt;Chris&lt;/P&gt;</description>
      <pubDate>Thu, 04 Feb 2016 14:57:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Convert-Seconds-To-Hours-Minutes-Seconds-and-Milliseconds/m-p/269403#M81034</guid>
      <dc:creator>IRHM73</dc:creator>
      <dc:date>2016-02-04T14:57:28Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Seconds To Hours, Minutes, Seconds and Milliseconds</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Convert-Seconds-To-Hours-Minutes-Seconds-and-Milliseconds/m-p/269404#M81035</link>
      <description>&lt;P&gt;Hi IRHM73,&lt;/P&gt;

&lt;P&gt;try this search:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;|rest /services/search/jobs
|rename custom.search as customSearch
|search NOT author="splunk-system-user"
|eval SearchString=if(isnotnull(customSearch),customSearch,eventSearch)
|search SearchString!=""
|addtotals fieldname=duration *duration_secs
|eval groupduration=case(duration&amp;lt;=300, "Less Than 5 Minutes", duration&amp;gt;300 AND duration&amp;lt;=600, "Between 5 and 10 Minutes", duration&amp;gt;600 AND duration&amp;gt;=1200, "Between 10 and 20 Minutes", duration&amp;gt;1200, "Greater Than 20 Minutes" )
|convert rmunit(duration) as numSecs
|eval stringSecs=strftime(numSecs, "%Mm %Ss %2Nms")
|eval earliestTime=strptime(earliestTime, "%Y-%m-%dT%H:%M:%S")|convert timeformat="%d/%b/%Y" ctime(earliestTime)
|eval latestTime=strptime(latestTime, "%Y-%m-%dT%H:%M:%S")|convert timeformat="%d/%b/%Y" ctime(latestTime)
|eval daterange= "From: ".earliestTime.", To: ".latestTime
|makemv delim=", " daterange
|sort +author
|table author,SearchString , daterange, request.earliest_time, request.latest_time, duration, stringSecs
|rename author as "Author", SearchString as "Search Performed", earliestTime as "Earliest Date Used", latestTime as "Latest Date Used", request.earliest_time as "Earliest Time Query Setting", request.latest_time as "Latest Time Query Setting", stringSecs as "Query Runtime"
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;cheers, MuS&lt;/P&gt;</description>
      <pubDate>Thu, 04 Feb 2016 15:41:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Convert-Seconds-To-Hours-Minutes-Seconds-and-Milliseconds/m-p/269404#M81035</guid>
      <dc:creator>MuS</dc:creator>
      <dc:date>2016-02-04T15:41:59Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Seconds To Hours, Minutes, Seconds and Milliseconds</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Convert-Seconds-To-Hours-Minutes-Seconds-and-Milliseconds/m-p/269405#M81036</link>
      <description>&lt;P&gt;Hi thank you for coming back to me with this, but unfortunately it doesn't extract the hours.&lt;/P&gt;

&lt;P&gt;Many thanks and kind regards&lt;/P&gt;

&lt;P&gt;Chris&lt;/P&gt;</description>
      <pubDate>Thu, 04 Feb 2016 16:36:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Convert-Seconds-To-Hours-Minutes-Seconds-and-Milliseconds/m-p/269405#M81036</guid>
      <dc:creator>IRHM73</dc:creator>
      <dc:date>2016-02-04T16:36:53Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Seconds To Hours, Minutes, Seconds and Milliseconds</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Convert-Seconds-To-Hours-Minutes-Seconds-and-Milliseconds/m-p/269406#M81037</link>
      <description>&lt;P&gt;For your sake I hope you won't need hours in the search run time ?!? If you still need it add it in the &lt;CODE&gt;eval&lt;/CODE&gt;&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; |eval stringSecs=strftime(numSecs, "%Hh %Mm %Ss %2Nms")
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 04 Feb 2016 16:42:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Convert-Seconds-To-Hours-Minutes-Seconds-and-Milliseconds/m-p/269406#M81037</guid>
      <dc:creator>MuS</dc:creator>
      <dc:date>2016-02-04T16:42:54Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Seconds To Hours, Minutes, Seconds and Milliseconds</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Convert-Seconds-To-Hours-Minutes-Seconds-and-Milliseconds/m-p/269407#M81038</link>
      <description>&lt;P&gt;Hi @MuS, yes unfortunately I need the hours in the formula. &lt;/P&gt;

&lt;P&gt;I did actually write the query including the hours myself before I replied to you earlier, and it was in the same format, but unfortunately it doesn't work.&lt;/P&gt;

&lt;P&gt;The formula adds an hour to every row, irrespective of whether the time in seconds is actually over an hour. &lt;/P&gt;

&lt;P&gt;Many thanks and kind regards&lt;/P&gt;

&lt;P&gt;Chris&lt;/P&gt;</description>
      <pubDate>Fri, 05 Feb 2016 06:43:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Convert-Seconds-To-Hours-Minutes-Seconds-and-Milliseconds/m-p/269407#M81038</guid>
      <dc:creator>IRHM73</dc:creator>
      <dc:date>2016-02-05T06:43:30Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Seconds To Hours, Minutes, Seconds and Milliseconds</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Convert-Seconds-To-Hours-Minutes-Seconds-and-Milliseconds/m-p/269408#M81039</link>
      <description>&lt;P&gt;Hi, thank you for this, and my apologies for not replying sooner.&lt;/P&gt;

&lt;P&gt;I've tried the code you kindly provided and unfortunately it doesn't work. Irrespective of the time in seconds it adds and hour onto each time.&lt;/P&gt;

&lt;P&gt;Many thanks and kind regards&lt;/P&gt;

&lt;P&gt;Chris&lt;/P&gt;</description>
      <pubDate>Fri, 05 Feb 2016 12:01:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Convert-Seconds-To-Hours-Minutes-Seconds-and-Milliseconds/m-p/269408#M81039</guid>
      <dc:creator>IRHM73</dc:creator>
      <dc:date>2016-02-05T12:01:21Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Seconds To Hours, Minutes, Seconds and Milliseconds</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Convert-Seconds-To-Hours-Minutes-Seconds-and-Milliseconds/m-p/269409#M81040</link>
      <description>&lt;P&gt;Hi @MuS, I've been looking at this quite a bit more, and I've stripped down the query and removed:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;*duration_secs
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;from  this line&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;|addtotals fieldname=duration *duration_secs
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;and the format which I'm left with in the field called "duration" is as follows:&lt;/P&gt;

&lt;P&gt;4317096301480106496.00000   &lt;/P&gt;

&lt;P&gt;Could you tell me please do you know what format this is in and would be possible to change this into the format "Hh:Mmin:Ss.Nms?&lt;/P&gt;

&lt;P&gt;Many thanks and kind regards&lt;/P&gt;

&lt;P&gt;Chris &lt;/P&gt;</description>
      <pubDate>Fri, 05 Feb 2016 15:43:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Convert-Seconds-To-Hours-Minutes-Seconds-and-Milliseconds/m-p/269409#M81040</guid>
      <dc:creator>IRHM73</dc:creator>
      <dc:date>2016-02-05T15:43:35Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Seconds To Hours, Minutes, Seconds and Milliseconds</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Convert-Seconds-To-Hours-Minutes-Seconds-and-Milliseconds/m-p/269410#M81041</link>
      <description>&lt;P&gt;IRHM73 - did you ever solve this problem?&lt;/P&gt;</description>
      <pubDate>Tue, 03 May 2016 21:06:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Convert-Seconds-To-Hours-Minutes-Seconds-and-Milliseconds/m-p/269410#M81041</guid>
      <dc:creator>mrickert91</dc:creator>
      <dc:date>2016-05-03T21:06:08Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Seconds To Hours, Minutes, Seconds and Milliseconds</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Convert-Seconds-To-Hours-Minutes-Seconds-and-Milliseconds/m-p/269411#M81042</link>
      <description>&lt;P&gt;Sorry for not coming back to this... this number is seconds. You can use this run everywhere search to convert it:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| gentimes start=-1
| eval duration=532061.35
| eval stringSecs=if(duration &amp;gt;= 43200, strftime(duration, "%Hh:%Mmin:%Ss.%3Nms"), strftime(duration, "00h:%Mmin:%Ss.%3Nms") )
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Change the value of the &lt;CODE&gt;duration&lt;/CODE&gt; eval to test it. The second &lt;CODE&gt;eval&lt;/CODE&gt; is need because if the duration is under one hour the &lt;CODE&gt;strftime&lt;/CODE&gt; command will produce a faulty output with &lt;CODE&gt;12h&lt;/CODE&gt; ?&lt;/P&gt;

&lt;P&gt;Hope this helps ...&lt;/P&gt;

&lt;P&gt;cheers, MuS&lt;/P&gt;</description>
      <pubDate>Tue, 03 May 2016 21:35:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Convert-Seconds-To-Hours-Minutes-Seconds-and-Milliseconds/m-p/269411#M81042</guid>
      <dc:creator>MuS</dc:creator>
      <dc:date>2016-05-03T21:35:21Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Seconds To Hours, Minutes, Seconds and Milliseconds</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Convert-Seconds-To-Hours-Minutes-Seconds-and-Milliseconds/m-p/269412#M81043</link>
      <description>&lt;P&gt;Hi @MuS, don't worry about it at all, the solution is extremely useful.&lt;/P&gt;

&lt;P&gt;Many thanks and kind regards&lt;/P&gt;

&lt;P&gt;Chris&lt;/P&gt;</description>
      <pubDate>Wed, 04 May 2016 05:16:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Convert-Seconds-To-Hours-Minutes-Seconds-and-Milliseconds/m-p/269412#M81043</guid>
      <dc:creator>IRHM73</dc:creator>
      <dc:date>2016-05-04T05:16:55Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Seconds To Hours, Minutes, Seconds and Milliseconds</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Convert-Seconds-To-Hours-Minutes-Seconds-and-Milliseconds/m-p/269413#M81044</link>
      <description>&lt;P&gt;Hey @MuS -&lt;/P&gt;

&lt;P&gt;I am having a little trouble understanding your solution. I might just be missing something obvious though.&lt;/P&gt;

&lt;P&gt;In your above solution, if duration is in seconds 532061.35 should correspond to roughly 147hours. (532061/3600)&lt;/P&gt;

&lt;P&gt;When I use your code, I get a result of 22h:47min:41s:350ms&lt;/P&gt;</description>
      <pubDate>Wed, 04 May 2016 13:43:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Convert-Seconds-To-Hours-Minutes-Seconds-and-Milliseconds/m-p/269413#M81044</guid>
      <dc:creator>mrickert91</dc:creator>
      <dc:date>2016-05-04T13:43:29Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Seconds To Hours, Minutes, Seconds and Milliseconds</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Convert-Seconds-To-Hours-Minutes-Seconds-and-Milliseconds/m-p/269414#M81045</link>
      <description>&lt;P&gt;nevermind - the answer i am looking for is here: &lt;A href="https://answers.splunk.com/answers/61652/convert-seconds-into-hours-minutes-and-seconds.html"&gt;https://answers.splunk.com/answers/61652/convert-seconds-into-hours-minutes-and-seconds.html&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;yoursearchhere&lt;BR /&gt;
 | convert rmunit(secs) as numSecs&lt;BR /&gt;
 | eval stringSecs=tostring(numSecs,"duration")&lt;BR /&gt;
 | eval stringSecs = replace(stringSecs,"(\d+):(\d+):(\d+)","\1h \2min \3s")&lt;/P&gt;</description>
      <pubDate>Wed, 04 May 2016 13:49:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Convert-Seconds-To-Hours-Minutes-Seconds-and-Milliseconds/m-p/269414#M81045</guid>
      <dc:creator>mrickert91</dc:creator>
      <dc:date>2016-05-04T13:49:11Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Seconds To Hours, Minutes, Seconds and Milliseconds</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Convert-Seconds-To-Hours-Minutes-Seconds-and-Milliseconds/m-p/269415#M81046</link>
      <description>&lt;P&gt;@ mrickert91, glad you found the missing days. My example was related to provide only hours, minutes and seconds. So if you want to have days as well just use it like this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| gentimes start=-1
| eval duration=532061.35 
| eval stringSecs=if(duration &amp;gt;= 43200, strftime(duration, "%d day %Hh:%Mmin:%Ss.%3Nms"), strftime(duration, "00h:%Mmin:%Ss.%3Nms") )
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;You could add further &lt;CODE&gt;if()&lt;/CODE&gt; statements to clean up the output to provide day or days &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;cheers, MuS&lt;/P&gt;</description>
      <pubDate>Wed, 04 May 2016 20:31:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Convert-Seconds-To-Hours-Minutes-Seconds-and-Milliseconds/m-p/269415#M81046</guid>
      <dc:creator>MuS</dc:creator>
      <dc:date>2016-05-04T20:31:02Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Seconds To Hours, Minutes, Seconds and Milliseconds</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Convert-Seconds-To-Hours-Minutes-Seconds-and-Milliseconds/m-p/269416#M81047</link>
      <description>&lt;P&gt;Has this been answered? I am having the same issue, but I need to break it down by years, months, days hours:minutes:seconds. The current results I am receiving are in milliseconds. Please advise. &lt;/P&gt;</description>
      <pubDate>Tue, 08 Oct 2019 18:56:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Convert-Seconds-To-Hours-Minutes-Seconds-and-Milliseconds/m-p/269416#M81047</guid>
      <dc:creator>reneedeleon</dc:creator>
      <dc:date>2019-10-08T18:56:59Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Seconds To Hours, Minutes, Seconds and Milliseconds</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Convert-Seconds-To-Hours-Minutes-Seconds-and-Milliseconds/m-p/269417#M81048</link>
      <description>&lt;P&gt;I'm having the same issue with the above, 1 hour is added to the value.&lt;/P&gt;

&lt;P&gt;Did you ever get a working solution?&lt;/P&gt;</description>
      <pubDate>Thu, 28 May 2020 13:55:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Convert-Seconds-To-Hours-Minutes-Seconds-and-Milliseconds/m-p/269417#M81048</guid>
      <dc:creator>joepjisc</dc:creator>
      <dc:date>2020-05-28T13:55:23Z</dc:date>
    </item>
  </channel>
</rss>

