<?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 Conditional Transaction Search in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Conditional-Transaction-Search/m-p/94780#M24499</link>
    <description>&lt;P&gt;Say I have two different logs, source=a.txt and source=b.txt and their format is as follows:&lt;/P&gt;

&lt;P&gt;Source=a.txt&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;09-Apr-2013 00:28:01.204 -06:00 [5492] VVLT-I-0177 Copyright 2012 EVault Inc.
09-Apr-2013 00:28:01.204 -06:00 [5492] VVLT-I-0001 Process: 19500, thread = 5492
09-Apr-2013 05:32:23.857 -06:00 [4152] VVLT-I-0033 elapsed time 05:04:22
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Source=b.txt&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;09-Apr-2013 00:18:01.204 -06:00 [5492] VVLT-I-0177 Copyright 2012 EVault Inc.
09-Apr-2013 00:18:01.204 -06:00 [5492] VVLT-I-0001 Process: 19500, thread = 5493
09-Apr-2013 05:22:23.857 -06:00 [4152] VVLT-I-0033 elapsed time 05:04:22
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;For that day, is there a way to present the data by 10 minute intervals to show if the process was still running or not?  I have attempted to use the transaction command to help in outputting the result, but am not sure if this is the right path to take.  An output example would be:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;Time | a.txt | b.txt
00:00 | 0 | 0 
00:10 | 0 | 1
00:20 | 1 | 1
00:30 | 1 | 1
.
.
.
05:20 | 1 | 1
05:30 | 1 | 0
05:40 | 1 | 0
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Mon, 15 Apr 2013 18:56:47 GMT</pubDate>
    <dc:creator>Wiggy</dc:creator>
    <dc:date>2013-04-15T18:56:47Z</dc:date>
    <item>
      <title>Conditional Transaction Search</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Conditional-Transaction-Search/m-p/94780#M24499</link>
      <description>&lt;P&gt;Say I have two different logs, source=a.txt and source=b.txt and their format is as follows:&lt;/P&gt;

&lt;P&gt;Source=a.txt&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;09-Apr-2013 00:28:01.204 -06:00 [5492] VVLT-I-0177 Copyright 2012 EVault Inc.
09-Apr-2013 00:28:01.204 -06:00 [5492] VVLT-I-0001 Process: 19500, thread = 5492
09-Apr-2013 05:32:23.857 -06:00 [4152] VVLT-I-0033 elapsed time 05:04:22
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Source=b.txt&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;09-Apr-2013 00:18:01.204 -06:00 [5492] VVLT-I-0177 Copyright 2012 EVault Inc.
09-Apr-2013 00:18:01.204 -06:00 [5492] VVLT-I-0001 Process: 19500, thread = 5493
09-Apr-2013 05:22:23.857 -06:00 [4152] VVLT-I-0033 elapsed time 05:04:22
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;For that day, is there a way to present the data by 10 minute intervals to show if the process was still running or not?  I have attempted to use the transaction command to help in outputting the result, but am not sure if this is the right path to take.  An output example would be:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;Time | a.txt | b.txt
00:00 | 0 | 0 
00:10 | 0 | 1
00:20 | 1 | 1
00:30 | 1 | 1
.
.
.
05:20 | 1 | 1
05:30 | 1 | 0
05:40 | 1 | 0
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 15 Apr 2013 18:56:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Conditional-Transaction-Search/m-p/94780#M24499</guid>
      <dc:creator>Wiggy</dc:creator>
      <dc:date>2013-04-15T18:56:47Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional Transaction Search</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Conditional-Transaction-Search/m-p/94781#M24500</link>
      <description>&lt;P&gt;Not sure if you really need &lt;CODE&gt;transaction&lt;/CODE&gt; for this. Wouldn't it be enough to just run &lt;CODE&gt;timechart&lt;/CODE&gt; and look at whether the count of events for each timeslice is zero or not?&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;source="a.txt" OR source="b.txt" | timechart span=10m count by source
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 15 Apr 2013 18:59:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Conditional-Transaction-Search/m-p/94781#M24500</guid>
      <dc:creator>Ayn</dc:creator>
      <dc:date>2013-04-15T18:59:05Z</dc:date>
    </item>
  </channel>
</rss>

