<?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 yet another nullQueue question in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/yet-another-nullQueue-question/m-p/162332#M45993</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;I've been trawling through the questions / wiki / docs etc, I just cannot see what I'm doing wrong:&lt;/P&gt;

&lt;P&gt;everything is under search/local:&lt;/P&gt;

&lt;P&gt;inputs.conf:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[monitor://C:\temp\doneFiles\Router##2304899.log]
disabled = false
followTail = 0
sourcetype = task_log
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;props.conf:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[task_log]
TRANSFORMS-t1 = otherelim
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;transforms.conf:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[otherelim]
REGEX = (?si)^.*\bRolled\b.*$
DEST_KEY=queue
FORMAT=nullQueue
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I'm trying to filter out multiline events containing "Rolled" on any line. In REGEX101.com I get a match as well as in the inline search. In spite of that I'm still collecting those events:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;Router##2304899: Mon Feb 24 12:49:17 EST 2014 - Rolling back ...
Router##2304899: Mon Feb 24 12:49:17 EST 2014 - Rolled back.
Router##2304899: Mon Feb 24 12:49:17 EST 2014 - Getting data ...
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I also tried activating debug logs on TailProcessor, used btool to check where my source type was loaded from.. what am I missing??&lt;/P&gt;

&lt;P&gt;Thanks vincent.&lt;/P&gt;</description>
    <pubDate>Mon, 24 Feb 2014 03:19:32 GMT</pubDate>
    <dc:creator>anz_leycurav</dc:creator>
    <dc:date>2014-02-24T03:19:32Z</dc:date>
    <item>
      <title>yet another nullQueue question</title>
      <link>https://community.splunk.com/t5/Splunk-Search/yet-another-nullQueue-question/m-p/162332#M45993</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;I've been trawling through the questions / wiki / docs etc, I just cannot see what I'm doing wrong:&lt;/P&gt;

&lt;P&gt;everything is under search/local:&lt;/P&gt;

&lt;P&gt;inputs.conf:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[monitor://C:\temp\doneFiles\Router##2304899.log]
disabled = false
followTail = 0
sourcetype = task_log
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;props.conf:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[task_log]
TRANSFORMS-t1 = otherelim
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;transforms.conf:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[otherelim]
REGEX = (?si)^.*\bRolled\b.*$
DEST_KEY=queue
FORMAT=nullQueue
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I'm trying to filter out multiline events containing "Rolled" on any line. In REGEX101.com I get a match as well as in the inline search. In spite of that I'm still collecting those events:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;Router##2304899: Mon Feb 24 12:49:17 EST 2014 - Rolling back ...
Router##2304899: Mon Feb 24 12:49:17 EST 2014 - Rolled back.
Router##2304899: Mon Feb 24 12:49:17 EST 2014 - Getting data ...
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I also tried activating debug logs on TailProcessor, used btool to check where my source type was loaded from.. what am I missing??&lt;/P&gt;

&lt;P&gt;Thanks vincent.&lt;/P&gt;</description>
      <pubDate>Mon, 24 Feb 2014 03:19:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/yet-another-nullQueue-question/m-p/162332#M45993</guid>
      <dc:creator>anz_leycurav</dc:creator>
      <dc:date>2014-02-24T03:19:32Z</dc:date>
    </item>
    <item>
      <title>Re: yet another nullQueue question</title>
      <link>https://community.splunk.com/t5/Splunk-Search/yet-another-nullQueue-question/m-p/162333#M45994</link>
      <description>&lt;P&gt;It look correct.&lt;BR /&gt;
Make sure that you deployed the props.conf and transforms.conf on the &lt;STRONG&gt;INDEXERS&lt;/STRONG&gt; (and HEAVY FORWARDERS if any).&lt;BR /&gt;
They have no effect on instances that do not parse the events (universal and lightweight forwarders)&lt;/P&gt;

&lt;P&gt;you could change the regex to&lt;BR /&gt;
REGEX = (?si)\bRolled\b&lt;BR /&gt;
It's enough to find the lines.&lt;/P&gt;</description>
      <pubDate>Mon, 24 Feb 2014 03:50:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/yet-another-nullQueue-question/m-p/162333#M45994</guid>
      <dc:creator>yannK</dc:creator>
      <dc:date>2014-02-24T03:50:50Z</dc:date>
    </item>
    <item>
      <title>Re: yet another nullQueue question</title>
      <link>https://community.splunk.com/t5/Splunk-Search/yet-another-nullQueue-question/m-p/162334#M45995</link>
      <description>&lt;P&gt;Thanks Yank, I actually started on a Universal forwarder but can't get it to work on my local full install neither.&lt;/P&gt;

&lt;P&gt;Assuming all the log levels were set to DEBUG, where could I expect to see the regex being applied?&lt;/P&gt;

&lt;P&gt;thanks again&lt;/P&gt;</description>
      <pubDate>Mon, 24 Feb 2014 03:55:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/yet-another-nullQueue-question/m-p/162334#M45995</guid>
      <dc:creator>anz_leycurav</dc:creator>
      <dc:date>2014-02-24T03:55:31Z</dc:date>
    </item>
  </channel>
</rss>

