<?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: Subtract two time in one event not work properly in milisecond in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Subtract-two-time-in-one-event-not-work-properly-in-milisecond/m-p/181750#M186885</link>
    <description>&lt;P&gt;But i want count the sub query event but i fail because when i use ...| stats count as res in sub query they not work i post this question please reply that answer if possible&lt;BR /&gt;
&lt;A href="http://answers.splunk.com/answers/233225/stats-count-not-work-in-sub-query.html"&gt;http://answers.splunk.com/answers/233225/stats-count-not-work-in-sub-query.html&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 08 May 2015 12:58:32 GMT</pubDate>
    <dc:creator>nitesh218ss</dc:creator>
    <dc:date>2015-05-08T12:58:32Z</dc:date>
    <item>
      <title>Subtract two time in one event not work properly in milisecond</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Subtract-two-time-in-one-event-not-work-properly-in-milisecond/m-p/181743#M186878</link>
      <description>&lt;P&gt;hi try to subtract 2 time but some are subtract some show blank&lt;/P&gt;

&lt;P&gt;my time format is     07:33:41.556&lt;BR /&gt;
I below i write 2 time for subtract and answer also by splunk&lt;BR /&gt;
07:33:41.556-07:33:39.337 =8338.000000  &lt;/P&gt;

&lt;P&gt;I also write 2 more time which result is blank in splunk&lt;BR /&gt;
07:33:40.493  -  07:33:39.649 = blank(No result)  why this happening what is solution? my query&lt;/P&gt;

&lt;P&gt;index="uk" sourcetype="ukpro" serviceType=1 message="Received * bytes from IP*" | rename time as time1,message as Request | join audit [search index="uk" sourcetype="ukpro" serviceType=1 message="Deleted m_pReceivingSocket" | rename time as time2, message as Responce]|  eval itime=strptime(time1,"%H:%M:%S.%z") | eval ptime=strptime(time2,"%H:%M:%S.%z") | eval TimeDiff=(ptime  -itime)| table time2 time1 TimeDiff audit&lt;/P&gt;</description>
      <pubDate>Wed, 06 May 2015 13:49:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Subtract-two-time-in-one-event-not-work-properly-in-milisecond/m-p/181743#M186878</guid>
      <dc:creator>nitesh218ss</dc:creator>
      <dc:date>2015-05-06T13:49:42Z</dc:date>
    </item>
    <item>
      <title>Re: Subtract two time in one event not work properly in milisecond</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Subtract-two-time-in-one-event-not-work-properly-in-milisecond/m-p/181744#M186879</link>
      <description>&lt;P&gt;Your strptime() calls have format strings that don't match your example times.  Try &lt;CODE&gt;strptime(time1,"%H:%M:%S.%3N")&lt;/CODE&gt;.&lt;/P&gt;</description>
      <pubDate>Wed, 06 May 2015 15:14:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Subtract-two-time-in-one-event-not-work-properly-in-milisecond/m-p/181744#M186879</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2015-05-06T15:14:46Z</dc:date>
    </item>
    <item>
      <title>Re: Subtract two time in one event not work properly in milisecond</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Subtract-two-time-in-one-event-not-work-properly-in-milisecond/m-p/181745#M186880</link>
      <description>&lt;P&gt;You have done the "time" parts correctly so the problem must be in the events.  Check out the results of this search and adjust accordingly:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index="uk" serviceType=1 (sourcetype="ukpro"message="Received bytes from IP") OR (sourcetype="ukpro" message="Deleted m_pReceivingSocket") | where isnull(time)
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Also, it would be best to avoid the join like this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index="uk"  serviceType=1 (sourcetype="ukpro"message="Received bytes from IP") OR (sourcetype="ukpro" message="Deleted m_pReceivingSocket") | stats dc(sourcetypes) AS numSourcetypes, earliest(time) AS itime, latest(time) AS ptime by audit | eval TimeDiff=(ptime -itime) | table ptime itime TimeDiff audit
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 06 May 2015 15:16:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Subtract-two-time-in-one-event-not-work-properly-in-milisecond/m-p/181745#M186880</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2015-05-06T15:16:50Z</dc:date>
    </item>
    <item>
      <title>Re: Subtract two time in one event not work properly in milisecond</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Subtract-two-time-in-one-event-not-work-properly-in-milisecond/m-p/181746#M186881</link>
      <description>&lt;P&gt;Thankyou very much now they subtract correctly&lt;/P&gt;</description>
      <pubDate>Thu, 07 May 2015 05:16:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Subtract-two-time-in-one-event-not-work-properly-in-milisecond/m-p/181746#M186881</guid>
      <dc:creator>nitesh218ss</dc:creator>
      <dc:date>2015-05-07T05:16:41Z</dc:date>
    </item>
    <item>
      <title>Re: Subtract two time in one event not work properly in milisecond</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Subtract-two-time-in-one-event-not-work-properly-in-milisecond/m-p/181747#M186882</link>
      <description>&lt;P&gt;Thankyou for answer&lt;BR /&gt;
In last query which you given they give result correctly but time is not subtracting&lt;BR /&gt;
But i got new way to join event thankyou for this idea &lt;/P&gt;

&lt;P&gt;But i want both event  message part time as request and responce so with you query how i do this &lt;BR /&gt;
for this resion i create this query&lt;/P&gt;

&lt;P&gt;index="uk" sourcetype="ukpro" serviceType=1 message="Received * bytes from IP*" | rename time as time1*&lt;EM&gt;,message as Request&lt;/EM&gt;* | join audit [search index="uk" sourcetype="ukpro" serviceType=1 message="Deleted m_pReceivingSocket" | rename time as time2, &lt;STRONG&gt;message as Responce&lt;/STRONG&gt;]|  eval itime=strptime(time1,"%H:%M:%S.%3N") | eval ptime=strptime(time2,"%H:%M:%S.%3N") | eval TimeDiff=ptime  -itime| table time2 time1 TimeDiff audit Request Responce&lt;/P&gt;

&lt;P&gt;In upper query i rename the message in sub query and main query and after that i use to show message part as different field&lt;BR /&gt;
I ask this question because your query processing time fast i thing&lt;BR /&gt;
 Thankyou&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 19:45:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Subtract-two-time-in-one-event-not-work-properly-in-milisecond/m-p/181747#M186882</guid>
      <dc:creator>nitesh218ss</dc:creator>
      <dc:date>2020-09-28T19:45:32Z</dc:date>
    </item>
    <item>
      <title>Re: Subtract two time in one event not work properly in milisecond</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Subtract-two-time-in-one-event-not-work-properly-in-milisecond/m-p/181748#M186883</link>
      <description>&lt;P&gt;I do not understand what you are saying.  Perhaps you are saying that you need the times distinctly matched to one message vs. the other?  My non-join search does not discriminate but it presumes that the earliest time is "Received" time and the latest time is the "Deleted" time.  Is this presumption not correct or do you need a distinctly match time for some other reason?  In any case, I am sure I can help if you can be (very much) more clear about what my non-join version lacks.&lt;/P&gt;</description>
      <pubDate>Thu, 07 May 2015 12:52:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Subtract-two-time-in-one-event-not-work-properly-in-milisecond/m-p/181748#M186883</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2015-05-07T12:52:51Z</dc:date>
    </item>
    <item>
      <title>Re: Subtract two time in one event not work properly in milisecond</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Subtract-two-time-in-one-event-not-work-properly-in-milisecond/m-p/181749#M186884</link>
      <description>&lt;P&gt;sorry my english is bad that y you not understand.&lt;BR /&gt;
index="uk" sourcetype="ukpro2" serviceType=1 message="Received * bytes from IP*"|rename time as time1,message as Request | join type="outer" audit[search index="uk" sourcetype="ukpro2" serviceType=1 message="Deleted m_pReceivingSocket"| rename time as time2, message as Responce ]| eval itime=strptime(time1,"%H:%M:%S.%3N") | eval ptime=strptime(time2,"%H:%M:%S.%3N")  | eval TimeDiff=ptime  -itime |where TimeDiff &amp;gt; 0  |table time2 time1 TimeDiff audit Request Responce  |stats avg(TimeDiff) as AVG, max(TimeDiff) as MAX, min(TimeDiff) as Min&lt;/P&gt;

&lt;P&gt;In this query if you see table time2 time1 TimeDiff audit Request Responce&lt;BR /&gt;
this way i able to see message (Request or Responce converted name) in result ?&lt;BR /&gt;
With your query this is possible ? if not then No problem&lt;/P&gt;</description>
      <pubDate>Fri, 08 May 2015 12:52:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Subtract-two-time-in-one-event-not-work-properly-in-milisecond/m-p/181749#M186884</guid>
      <dc:creator>nitesh218ss</dc:creator>
      <dc:date>2015-05-08T12:52:10Z</dc:date>
    </item>
    <item>
      <title>Re: Subtract two time in one event not work properly in milisecond</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Subtract-two-time-in-one-event-not-work-properly-in-milisecond/m-p/181750#M186885</link>
      <description>&lt;P&gt;But i want count the sub query event but i fail because when i use ...| stats count as res in sub query they not work i post this question please reply that answer if possible&lt;BR /&gt;
&lt;A href="http://answers.splunk.com/answers/233225/stats-count-not-work-in-sub-query.html"&gt;http://answers.splunk.com/answers/233225/stats-count-not-work-in-sub-query.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 08 May 2015 12:58:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Subtract-two-time-in-one-event-not-work-properly-in-milisecond/m-p/181750#M186885</guid>
      <dc:creator>nitesh218ss</dc:creator>
      <dc:date>2015-05-08T12:58:32Z</dc:date>
    </item>
    <item>
      <title>Re: Subtract two time in one event not work properly in milisecond</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Subtract-two-time-in-one-event-not-work-properly-in-milisecond/m-p/181751#M186886</link>
      <description>&lt;P&gt;I try to avoid subqueries whenever possible because they do not scale.  In any case, I still do not understand your question.  Is there somebody near you who speaks English a bit better who can translate your question for you?  I just do not understand your text.&lt;/P&gt;</description>
      <pubDate>Fri, 08 May 2015 14:51:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Subtract-two-time-in-one-event-not-work-properly-in-milisecond/m-p/181751#M186886</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2015-05-08T14:51:38Z</dc:date>
    </item>
    <item>
      <title>Re: Subtract two time in one event not work properly in milisecond</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Subtract-two-time-in-one-event-not-work-properly-in-milisecond/m-p/181752#M186887</link>
      <description>&lt;P&gt;no english persion present here.&lt;BR /&gt;
i want make query with out subquery if possible:&lt;/P&gt;

&lt;P&gt;Result contain this fields:&lt;BR /&gt;
Average TimeDiff, Min TimeDiff, Max TimeDiff , Total request means the message count which is equal to "Received bytes from IP"  and total Responce count means the message which is "Deleted m_pReceivingSocket" &lt;BR /&gt;
this result come if audit no is equal&lt;/P&gt;

&lt;P&gt;Copy past this link in new browser in this i write one more question related to this:   &lt;A href="http://answers.splunk.com/answers/233225/stats-count-not-work-in-sub-query.html"&gt;http://answers.splunk.com/answers/233225/stats-count-not-work-in-sub-query.html&lt;/A&gt;      &lt;/P&gt;</description>
      <pubDate>Fri, 08 May 2015 17:54:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Subtract-two-time-in-one-event-not-work-properly-in-milisecond/m-p/181752#M186887</guid>
      <dc:creator>nitesh218ss</dc:creator>
      <dc:date>2015-05-08T17:54:47Z</dc:date>
    </item>
    <item>
      <title>Re: Subtract two time in one event not work properly in milisecond</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Subtract-two-time-in-one-event-not-work-properly-in-milisecond/m-p/181753#M186888</link>
      <description>&lt;P&gt;thanks for reply&lt;/P&gt;</description>
      <pubDate>Fri, 08 May 2015 18:08:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Subtract-two-time-in-one-event-not-work-properly-in-milisecond/m-p/181753#M186888</guid>
      <dc:creator>nitesh218ss</dc:creator>
      <dc:date>2015-05-08T18:08:17Z</dc:date>
    </item>
    <item>
      <title>Re: Subtract two time in one event not work properly in milisecond</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Subtract-two-time-in-one-event-not-work-properly-in-milisecond/m-p/181754#M186889</link>
      <description>&lt;P&gt;Let's start from the beginning.  I am going to explain in excruciating detail what I think you mean.  I will also explain what I am doing with my searches.  You tell me where I am mistaken.&lt;/P&gt;

&lt;P&gt;You have datasets:&lt;BR /&gt;
D1 is &lt;CODE&gt;index="uk" serviceType=1 sourcetype="ukpro"message="Received bytes from IP"&lt;/CODE&gt;&lt;BR /&gt;
AND&lt;BR /&gt;
D2 is &lt;CODE&gt;index="uk" serviceType=1 sourcetype="ukpro" message="Deleted m_pReceivingSocket"&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;These 2 datasets share a field called &lt;CODE&gt;audit&lt;/CODE&gt;.&lt;BR /&gt;
The "audit" field can be used to cross-reference/link/join the datasets against one-another.&lt;BR /&gt;
Any specific value for the "audit" field may appear more than once (may exist in multiple event records) in either dataset.&lt;/P&gt;

&lt;P&gt;You would like to merge the 2 datasets and aggregate them based on the "audit" field such that all events in either dataset that share a common value for field "audit" are clumped together.&lt;/P&gt;

&lt;P&gt;Within each "clump",  you would like to calculate the following values:&lt;BR /&gt;
A1: TimeDiff=Time span between earliest event and latest event.&lt;BR /&gt;
A2: iNum=The number of "Received"-type events.&lt;BR /&gt;
A3: pNum=The number of "Deleted"-type events.&lt;/P&gt;

&lt;P&gt;That is this search:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index="uk" serviceType=1 (sourcetype="ukpro"message="Received bytes from IP") OR (sourcetype="ukpro" message="Deleted m_pReceivingSocket") | stats count(eval(like(message,"Received%"))) AS iNum, count(eval(like(message,"Deleted%"))) AS pNum, earliest(time) AS lowTime, latest(time) AS highTime by audit | eval TimeDiff=(highTime-lowTime) | table iNum pNum TimeDiff audit
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Furthermore, once this aggregation is calculated, you would like to perform an additional level of aggregated statistical analysis to calculate the following values from the output from the previous search as follows:&lt;BR /&gt;
B1: avg(TimeDiff)&lt;BR /&gt;
B2: min(TimeDiff)&lt;BR /&gt;
B3: max(TimeDiff)&lt;BR /&gt;
B4: sum(iNum)&lt;BR /&gt;
B5: sum(pNum)&lt;/P&gt;

&lt;P&gt;That is this search:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index="uk" serviceType=1 (sourcetype="ukpro"message="Received bytes from IP") OR (sourcetype="ukpro" message="Deleted m_pReceivingSocket") | stats count(eval(like(message,"Received%"))) AS iNum, count(eval(like(message,"Deleted%"))) AS pNum, earliest(time) AS lowTime, latest(time) AS highTime by audit | eval TimeDiff=(highTime-lowTime) | stats avg(TimeDiff), min(TimeDiff), max(TimeDiff), sum(iNum), sum(pNum) by audit
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Did I get it correct?  If not, carefully highlight what I got wrong.&lt;/P&gt;</description>
      <pubDate>Fri, 08 May 2015 19:42:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Subtract-two-time-in-one-event-not-work-properly-in-milisecond/m-p/181754#M186889</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2015-05-08T19:42:31Z</dc:date>
    </item>
    <item>
      <title>Re: Subtract two time in one event not work properly in milisecond</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Subtract-two-time-in-one-event-not-work-properly-in-milisecond/m-p/181755#M186890</link>
      <description>&lt;P&gt;Hi thanks for help&lt;BR /&gt;
i got this Error in both query&lt;BR /&gt;
Error in 'SearchProcessor': Mismatched quotes and/or parenthesis. &lt;BR /&gt;
i also try to solve this now.&lt;/P&gt;</description>
      <pubDate>Mon, 11 May 2015 10:10:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Subtract-two-time-in-one-event-not-work-properly-in-milisecond/m-p/181755#M186890</guid>
      <dc:creator>nitesh218ss</dc:creator>
      <dc:date>2015-05-11T10:10:49Z</dc:date>
    </item>
    <item>
      <title>Re: Subtract two time in one event not work properly in milisecond</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Subtract-two-time-in-one-event-not-work-properly-in-milisecond/m-p/181756#M186891</link>
      <description>&lt;P&gt;I forgot to close my evals with right-parentheses.  I edited and resaved it; try again.  Also let me know if my translation/explanation matches what you are trying to do.&lt;/P&gt;</description>
      <pubDate>Mon, 11 May 2015 13:04:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Subtract-two-time-in-one-event-not-work-properly-in-milisecond/m-p/181756#M186891</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2015-05-11T13:04:29Z</dc:date>
    </item>
    <item>
      <title>Re: Subtract two time in one event not work properly in milisecond</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Subtract-two-time-in-one-event-not-work-properly-in-milisecond/m-p/181757#M186892</link>
      <description>&lt;P&gt;yes match totally &lt;BR /&gt;
Only i add this line:&lt;BR /&gt;
A1: TimeDiff=Time span between earliest event and latest event which audit Number same.&lt;/P&gt;</description>
      <pubDate>Mon, 11 May 2015 17:58:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Subtract-two-time-in-one-event-not-work-properly-in-milisecond/m-p/181757#M186892</guid>
      <dc:creator>nitesh218ss</dc:creator>
      <dc:date>2015-05-11T17:58:30Z</dc:date>
    </item>
    <item>
      <title>Re: Subtract two time in one event not work properly in milisecond</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Subtract-two-time-in-one-event-not-work-properly-in-milisecond/m-p/181758#M186893</link>
      <description>&lt;P&gt;Then we agree completely already (without any changes) because that is what I mean by "within each clump" (share the same "audit number" value).  Have you tried my search?  It should give you what you expect now that I fixed the typo.  If it does, please click "Accept".&lt;/P&gt;</description>
      <pubDate>Mon, 11 May 2015 18:09:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Subtract-two-time-in-one-event-not-work-properly-in-milisecond/m-p/181758#M186893</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2015-05-11T18:09:36Z</dc:date>
    </item>
    <item>
      <title>Re: Subtract two time in one event not work properly in milisecond</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Subtract-two-time-in-one-event-not-work-properly-in-milisecond/m-p/181759#M186894</link>
      <description>&lt;P&gt;ya i run but  avg(TimeDiff), min(TimeDiff), max(TimeDiff)   is blank in output and  sum(iNum), sum(pNum) is 1&lt;/P&gt;

&lt;P&gt;I try to accept but they give message you already accept one answer other is not allow&lt;/P&gt;</description>
      <pubDate>Tue, 12 May 2015 09:38:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Subtract-two-time-in-one-event-not-work-properly-in-milisecond/m-p/181759#M186894</guid>
      <dc:creator>nitesh218ss</dc:creator>
      <dc:date>2015-05-12T09:38:57Z</dc:date>
    </item>
    <item>
      <title>Re: Subtract two time in one event not work properly in milisecond</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Subtract-two-time-in-one-event-not-work-properly-in-milisecond/m-p/181760#M186895</link>
      <description>&lt;P&gt;I think I found the problem: I used &lt;CODE&gt;time&lt;/CODE&gt; instead of &lt;CODE&gt;_time&lt;/CODE&gt;.  Here is the corrected search:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index="uk" serviceType=1 (sourcetype="ukpro"message="Received bytes from IP") OR (sourcetype="ukpro" message="Deleted m_pReceivingSocket") | stats count(eval(like(message,"Received%"))) AS iNum, count(eval(like(message,"Deleted%"))) AS pNum, earliest(_time) AS lowTime, latest(_time) AS highTime by audit | eval TimeDiff=(highTime-lowTime) | stats avg(TimeDiff), min(TimeDiff), max(TimeDiff), sum(iNum), sum(pNum) by audit
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;If this doesn't work, then you are going to have to debug my search "pipe by pipe" to see where it is breaking down.  Start with everything before the first pipe ("|") character and remove everything after it: does this base search return what you expect?  If so, next add in everything up to the next pipe character: Does the work done by the added text work as it should?  If so, keep adding.  Eventually you will find the point where it is not doing what you expect it to.  Report back and we will take it from there.&lt;/P&gt;</description>
      <pubDate>Tue, 12 May 2015 15:13:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Subtract-two-time-in-one-event-not-work-properly-in-milisecond/m-p/181760#M186895</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2015-05-12T15:13:15Z</dc:date>
    </item>
    <item>
      <title>Re: Subtract two time in one event not work properly in milisecond</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Subtract-two-time-in-one-event-not-work-properly-in-milisecond/m-p/181761#M186896</link>
      <description>&lt;P&gt;ok sir thanks&lt;/P&gt;</description>
      <pubDate>Tue, 12 May 2015 19:14:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Subtract-two-time-in-one-event-not-work-properly-in-milisecond/m-p/181761#M186896</guid>
      <dc:creator>nitesh218ss</dc:creator>
      <dc:date>2015-05-12T19:14:18Z</dc:date>
    </item>
  </channel>
</rss>

