<?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 help with event filtering - excluding events before indexing in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/help-with-event-filtering-excluding-events-before-indexing/m-p/85722#M17802</link>
    <description>&lt;P&gt;I have an overload of events no one wants and are eating up our license so I did  the following and it is not working.&lt;/P&gt;

&lt;P&gt;I am trying to drop the following message:&lt;/P&gt;

&lt;P&gt;"Terminating on fatal IPC exception"&lt;/P&gt;

&lt;P&gt;I am running this off of a heavy forwarder:&lt;/P&gt;

&lt;P&gt;Here is my props&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[source::/opt/logs/all_logs]
TRANSFORMS-null= setnull
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Here is my transforms&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[setnull]
REGEX = /Terminating on fatal IPC exception/
DEST_KEY = queue
FORMAT = nullQueue
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;The above is working so well now no events are being forwarded to the indexers. Any idea what I am doing wrong?&lt;/P&gt;

&lt;P&gt;Thanks&lt;/P&gt;

&lt;P&gt;Ed&lt;/P&gt;</description>
    <pubDate>Mon, 07 Oct 2013 18:36:12 GMT</pubDate>
    <dc:creator>ebailey</dc:creator>
    <dc:date>2013-10-07T18:36:12Z</dc:date>
    <item>
      <title>help with event filtering - excluding events before indexing</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/help-with-event-filtering-excluding-events-before-indexing/m-p/85722#M17802</link>
      <description>&lt;P&gt;I have an overload of events no one wants and are eating up our license so I did  the following and it is not working.&lt;/P&gt;

&lt;P&gt;I am trying to drop the following message:&lt;/P&gt;

&lt;P&gt;"Terminating on fatal IPC exception"&lt;/P&gt;

&lt;P&gt;I am running this off of a heavy forwarder:&lt;/P&gt;

&lt;P&gt;Here is my props&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[source::/opt/logs/all_logs]
TRANSFORMS-null= setnull
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Here is my transforms&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[setnull]
REGEX = /Terminating on fatal IPC exception/
DEST_KEY = queue
FORMAT = nullQueue
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;The above is working so well now no events are being forwarded to the indexers. Any idea what I am doing wrong?&lt;/P&gt;

&lt;P&gt;Thanks&lt;/P&gt;

&lt;P&gt;Ed&lt;/P&gt;</description>
      <pubDate>Mon, 07 Oct 2013 18:36:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/help-with-event-filtering-excluding-events-before-indexing/m-p/85722#M17802</guid>
      <dc:creator>ebailey</dc:creator>
      <dc:date>2013-10-07T18:36:12Z</dc:date>
    </item>
    <item>
      <title>Re: help with event filtering - excluding events before indexing</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/help-with-event-filtering-excluding-events-before-indexing/m-p/85723#M17803</link>
      <description>&lt;P&gt;The config looks good.  Somehow you're regex is matching everything.  I've used something very similar in the past, but on the indexer.  Never tried it on a heavy forwarder.&lt;/P&gt;</description>
      <pubDate>Mon, 07 Oct 2013 19:01:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/help-with-event-filtering-excluding-events-before-indexing/m-p/85723#M17803</guid>
      <dc:creator>lukejadamec</dc:creator>
      <dc:date>2013-10-07T19:01:15Z</dc:date>
    </item>
    <item>
      <title>Re: help with event filtering - excluding events before indexing</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/help-with-event-filtering-excluding-events-before-indexing/m-p/85724#M17804</link>
      <description>&lt;P&gt;I don't think the &lt;CODE&gt;REGEX&lt;/CODE&gt; needs the / characters around it unless that is in the actual event.  This should be fine:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;REGEX = Terminating on fatal IPC exception
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;But, a stanza name as generic as "setnull" may already existing within configs.  I might suggest naming it something more specific like:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[source::/opt/logs/all_logs]
TRANSFORMS-null= setnull-fatalIPCexception

[setnull-fatalIPCexception]
REGEX = Terminating on fatal IPC exception
DEST_KEY = queue
FORMAT = nullQueue
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 07 Oct 2013 22:30:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/help-with-event-filtering-excluding-events-before-indexing/m-p/85724#M17804</guid>
      <dc:creator>dwaddle</dc:creator>
      <dc:date>2013-10-07T22:30:46Z</dc:date>
    </item>
    <item>
      <title>Re: help with event filtering - excluding events before indexing</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/help-with-event-filtering-excluding-events-before-indexing/m-p/85725#M17805</link>
      <description>&lt;P&gt;I made your suggested change and no joy. Now all events are flowing from the heavy forwarder to the indexers. Thanks for your effort.&lt;/P&gt;

&lt;P&gt;Ed&lt;/P&gt;</description>
      <pubDate>Mon, 07 Oct 2013 23:48:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/help-with-event-filtering-excluding-events-before-indexing/m-p/85725#M17805</guid>
      <dc:creator>ebailey</dc:creator>
      <dc:date>2013-10-07T23:48:54Z</dc:date>
    </item>
    <item>
      <title>Re: help with event filtering - excluding events before indexing</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/help-with-event-filtering-excluding-events-before-indexing/m-p/85726#M17806</link>
      <description>&lt;P&gt;BTW - the actual full event is &lt;/P&gt;

&lt;P&gt;Oct  7 23:49:04 xxxhostnamexxx lsassd[9246]: 0x3fcc8b90:Terminating on fatal IPC exception&lt;/P&gt;</description>
      <pubDate>Mon, 07 Oct 2013 23:49:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/help-with-event-filtering-excluding-events-before-indexing/m-p/85726#M17806</guid>
      <dc:creator>ebailey</dc:creator>
      <dc:date>2013-10-07T23:49:51Z</dc:date>
    </item>
    <item>
      <title>Re: help with event filtering - excluding events before indexing</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/help-with-event-filtering-excluding-events-before-indexing/m-p/85727#M17807</link>
      <description>&lt;P&gt;Is this a multi-line event?  You could try adding (?msi) to the beginning of the regex.  You can test the regex in a search string which saves restarting the forwarder.&lt;/P&gt;</description>
      <pubDate>Mon, 07 Oct 2013 23:54:48 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/help-with-event-filtering-excluding-events-before-indexing/m-p/85727#M17807</guid>
      <dc:creator>lukejadamec</dc:creator>
      <dc:date>2013-10-07T23:54:48Z</dc:date>
    </item>
    <item>
      <title>Re: help with event filtering - excluding events before indexing</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/help-with-event-filtering-excluding-events-before-indexing/m-p/85728#M17808</link>
      <description>&lt;P&gt;this is not a multi-line event - good idea using a search string to test the regex. Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 08 Oct 2013 13:59:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/help-with-event-filtering-excluding-events-before-indexing/m-p/85728#M17808</guid>
      <dc:creator>ebailey</dc:creator>
      <dc:date>2013-10-08T13:59:10Z</dc:date>
    </item>
  </channel>
</rss>

