<?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: Filtering out data (from a forwarder) on Indexer? in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/Filtering-out-data-from-a-forwarder-on-Indexer/m-p/471822#M81071</link>
    <description>&lt;P&gt;transforms.conf&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[setnull]
REGEX = (?s).*process_image.*vmtoolsd\.exe.*
DEST_KEY = queue
FORMAT = nullQueue  
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;REGEX captures all.&lt;/P&gt;</description>
    <pubDate>Mon, 02 Mar 2020 12:10:47 GMT</pubDate>
    <dc:creator>to4kawa</dc:creator>
    <dc:date>2020-03-02T12:10:47Z</dc:date>
    <item>
      <title>Filtering out data (from a forwarder) on Indexer?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Filtering-out-data-from-a-forwarder-on-Indexer/m-p/471818#M81067</link>
      <description>&lt;P&gt;hi,  i have several universal forwarders deployed, and im getting lots of events i want to filter out.&lt;/P&gt;

&lt;P&gt;I understand from reading answers here i need to do this on the indexer (or else install heavy forwaders on my endpoints, which i dont want to do).&lt;BR /&gt;
This is a raw entry that im trying to drop / filter out from my indexer (ie to keep it from using up lots of my license):&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;02/13/2020 10:19:09.016
event_status="(0)The operation completed successfully."
pid=1216
process_image="c:\Program Files\VMware\VMware Tools\vmtoolsd.exe"
registry_type="CreateKey"
key_path="HKLM\system\controlset001\services\tcpip\parameters"
data_type="REG_NONE"
data=""
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;This is the entry from the inputs.conf on the forwarders that is sending some of the events i want to filter out:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;    [WinRegMon://default]
    disabled = 0
    hive = .*
    proc = .*
    type = rename|set|delete|create
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;And i have added these lines on my indexer (and restarted),  but im still seeing the events come in:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;#on props.conf ( located in: C:\Program #Files\Splunk\etc\users\admin\search\local\props.conf):

[WinRegMon://default]
TRANSFORMS-set= setnull

#on transforms.conf ( located in: C:\Program #Files\Splunk\etc\users\admin\search\local\transforms.conf):

[setnull]
REGEX = process_image=.+vmtoolsd.exe"
DEST_KEY = queue
FORMAT = nullQueue
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Thanks!&lt;BR /&gt;
(ive been referencing many answers, including this good one):&lt;BR /&gt;
(h)ttps:// answers.splunk.com/answers/37423/how-to-configure-a-forwarder-to-filter-and-send-the-specific-events-i-want.html&lt;/P&gt;</description>
      <pubDate>Thu, 13 Feb 2020 16:22:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Filtering-out-data-from-a-forwarder-on-Indexer/m-p/471818#M81067</guid>
      <dc:creator>spunk311z</dc:creator>
      <dc:date>2020-02-13T16:22:21Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering out data (from a forwarder) on Indexer?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Filtering-out-data-from-a-forwarder-on-Indexer/m-p/471819#M81068</link>
      <description>&lt;P&gt;after making the changes, did you do any of the following:&lt;BR /&gt;
- run the search:&lt;BR /&gt;
| extract reload=T&lt;BR /&gt;
OR &lt;BR /&gt;
- http[s]://[splunkWebHostname]:[splunkWebPort]/debug/refresh&lt;BR /&gt;
OR&lt;BR /&gt;
- restart splunk -- /opt/splunk/bin/splunk restart?&lt;/P&gt;

&lt;P&gt;and then validate ?&lt;/P&gt;</description>
      <pubDate>Mon, 02 Mar 2020 00:53:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Filtering-out-data-from-a-forwarder-on-Indexer/m-p/471819#M81068</guid>
      <dc:creator>anmolpatel</dc:creator>
      <dc:date>2020-03-02T00:53:35Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering out data (from a forwarder) on Indexer?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Filtering-out-data-from-a-forwarder-on-Indexer/m-p/471820#M81069</link>
      <description>&lt;P&gt;Stanza name in props.conf should be &lt;STRONG&gt;source::&amp;lt;&lt;/STRONG&gt;source*&lt;EM&gt;&amp;gt;&lt;/EM&gt;* or &lt;STRONG&gt;sourcetype&lt;/STRONG&gt;. Set &lt;STRONG&gt;sourcetype&lt;/STRONG&gt; attribute in inputs.conf and use same as stanza in props.conf. You can also put props.conf and transforms.conf on universal forwarders.&lt;/P&gt;

&lt;P&gt;inputs.conf&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; [WinRegMon://default]
 disabled = 0
 hive = .*
 proc = .*
 type = rename|set|delete|create
 sourcetype = winregmonitor
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;props.conf&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[winregmonitor]
TRANSFORMS-set= setnull
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 30 Sep 2020 04:23:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Filtering-out-data-from-a-forwarder-on-Indexer/m-p/471820#M81069</guid>
      <dc:creator>manjunathmeti</dc:creator>
      <dc:date>2020-09-30T04:23:07Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering out data (from a forwarder) on Indexer?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Filtering-out-data-from-a-forwarder-on-Indexer/m-p/471821#M81070</link>
      <description>&lt;P&gt;You should put these under ...\etc\apps\local or ...\etc\system\local instead of under user\admin if you want use those on indexing time. &lt;/P&gt;

&lt;P&gt;Ismo&lt;/P&gt;</description>
      <pubDate>Mon, 02 Mar 2020 10:18:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Filtering-out-data-from-a-forwarder-on-Indexer/m-p/471821#M81070</guid>
      <dc:creator>isoutamo</dc:creator>
      <dc:date>2020-03-02T10:18:13Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering out data (from a forwarder) on Indexer?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Filtering-out-data-from-a-forwarder-on-Indexer/m-p/471822#M81071</link>
      <description>&lt;P&gt;transforms.conf&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[setnull]
REGEX = (?s).*process_image.*vmtoolsd\.exe.*
DEST_KEY = queue
FORMAT = nullQueue  
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;REGEX captures all.&lt;/P&gt;</description>
      <pubDate>Mon, 02 Mar 2020 12:10:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Filtering-out-data-from-a-forwarder-on-Indexer/m-p/471822#M81071</guid>
      <dc:creator>to4kawa</dc:creator>
      <dc:date>2020-03-02T12:10:47Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering out data (from a forwarder) on Indexer?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Filtering-out-data-from-a-forwarder-on-Indexer/m-p/471823#M81072</link>
      <description>&lt;P&gt;This might help you!&lt;/P&gt;

&lt;P&gt;&lt;A href="https://docs.splunk.com/Documentation/Splunk/8.0.2/Forwarding/Routeandfilterdatad"&gt;https://docs.splunk.com/Documentation/Splunk/8.0.2/Forwarding/Routeandfilterdatad&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Mar 2020 15:50:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Filtering-out-data-from-a-forwarder-on-Indexer/m-p/471823#M81072</guid>
      <dc:creator>vinod94</dc:creator>
      <dc:date>2020-03-03T15:50:47Z</dc:date>
    </item>
  </channel>
</rss>

