<?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: How to find the duration of overlapping transactions in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-to-find-the-duration-of-overlapping-transactions/m-p/328404#M97770</link>
    <description>&lt;P&gt;Will you always have only two events to match up?&lt;/P&gt;

&lt;P&gt;If you will have more than two, will you have them already correlated (like with a &lt;CODE&gt;transaction&lt;/CODE&gt; command)?&lt;/P&gt;</description>
    <pubDate>Mon, 11 Sep 2017 21:39:04 GMT</pubDate>
    <dc:creator>cpetterborg</dc:creator>
    <dc:date>2017-09-11T21:39:04Z</dc:date>
    <item>
      <title>How to find the duration of overlapping transactions</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-find-the-duration-of-overlapping-transactions/m-p/328403#M97769</link>
      <description>&lt;P&gt;Ok, &lt;/P&gt;

&lt;P&gt;I have two or more transactions like this:&lt;/P&gt;

&lt;P&gt;Host:abc123_01 start:08:00 end:10:00&lt;BR /&gt;
Host:abc123_02 start:09:05 end:11:00&lt;/P&gt;

&lt;P&gt;If you look the time windows of the transactions overlap.  I would like to be able to calculate the duration of the overlap itself.&lt;/P&gt;

&lt;P&gt;Not sure if there is an automated way.&lt;/P&gt;

&lt;P&gt;Any help would be appreciated,&lt;BR /&gt;
Rcp &lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 15:41:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-find-the-duration-of-overlapping-transactions/m-p/328403#M97769</guid>
      <dc:creator>raynold_peterso</dc:creator>
      <dc:date>2020-09-29T15:41:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to find the duration of overlapping transactions</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-find-the-duration-of-overlapping-transactions/m-p/328404#M97770</link>
      <description>&lt;P&gt;Will you always have only two events to match up?&lt;/P&gt;

&lt;P&gt;If you will have more than two, will you have them already correlated (like with a &lt;CODE&gt;transaction&lt;/CODE&gt; command)?&lt;/P&gt;</description>
      <pubDate>Mon, 11 Sep 2017 21:39:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-find-the-duration-of-overlapping-transactions/m-p/328404#M97770</guid>
      <dc:creator>cpetterborg</dc:creator>
      <dc:date>2017-09-11T21:39:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to find the duration of overlapping transactions</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-find-the-duration-of-overlapping-transactions/m-p/328405#M97771</link>
      <description>&lt;P&gt;Adapt one of these - &lt;/P&gt;

&lt;P&gt;&lt;A href="https://answers.splunk.com/answers/513002/how-to-graph-sum-of-overlapping-values-given-start.html#answer-514225"&gt;https://answers.splunk.com/answers/513002/how-to-graph-sum-of-overlapping-values-given-start.html#answer-514225&lt;/A&gt;&lt;BR /&gt;
&lt;A href="https://answers.splunk.com/answers/565112/suggestions-for-charting-backlogs-by-month.html"&gt;https://answers.splunk.com/answers/565112/suggestions-for-charting-backlogs-by-month.html&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;The basic idea is to break each transaction into two - one that +1s the count at the start, and one that -1s the count at the end.  In your use case, any increment of time where the total open count is 2 or more is a unit of overlap.    &lt;/P&gt;</description>
      <pubDate>Mon, 11 Sep 2017 23:06:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-find-the-duration-of-overlapping-transactions/m-p/328405#M97771</guid>
      <dc:creator>DalJeanis</dc:creator>
      <dc:date>2017-09-11T23:06:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to find the duration of overlapping transactions</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-find-the-duration-of-overlapping-transactions/m-p/328406#M97772</link>
      <description>&lt;P&gt;You can do some crazy stuff with &lt;CODE&gt;concurrency&lt;/CODE&gt;:&lt;BR /&gt;
&lt;A href="https://docs.splunk.com/Documentation/SplunkCloud/latest/SearchReference/Concurrency"&gt;https://docs.splunk.com/Documentation/SplunkCloud/latest/SearchReference/Concurrency&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;Search for &lt;CODE&gt;woodcock splunk answers concurrency&lt;/CODE&gt; and maybe something that I have written before will get you going.&lt;/P&gt;</description>
      <pubDate>Tue, 12 Sep 2017 05:15:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-find-the-duration-of-overlapping-transactions/m-p/328406#M97772</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2017-09-12T05:15:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to find the duration of overlapping transactions</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-find-the-duration-of-overlapping-transactions/m-p/328407#M97773</link>
      <description>&lt;P&gt;Hey @raynold.peterson, don't forget to accept an answer if one of these solutions worked for you. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; Everyone loves karma points! Happy Splunking!&lt;/P&gt;</description>
      <pubDate>Wed, 13 Sep 2017 00:42:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-find-the-duration-of-overlapping-transactions/m-p/328407#M97773</guid>
      <dc:creator>lfedak_splunk</dc:creator>
      <dc:date>2017-09-13T00:42:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to find the duration of overlapping transactions</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-find-the-duration-of-overlapping-transactions/m-p/328408#M97774</link>
      <description>&lt;P&gt;Especially this one:&lt;BR /&gt;
&lt;A href="https://answers.splunk.com/answers/319585/how-to-graph-the-number-of-active-sessions-over-ti.html?childToView=318699#answer-318699"&gt;https://answers.splunk.com/answers/319585/how-to-graph-the-number-of-active-sessions-over-ti.html?childToView=318699#answer-318699&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Nov 2017 18:32:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-find-the-duration-of-overlapping-transactions/m-p/328408#M97774</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2017-11-15T18:32:44Z</dc:date>
    </item>
  </channel>
</rss>

