<?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 data block in Heavy Forwarder in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/Filtering-data-block-in-Heavy-Forwarder/m-p/469041#M80694</link>
    <description>&lt;P&gt;Hi jrballesteros05,&lt;BR /&gt;
You can filter logs on the Indexers, before indexing or on Heavy Forwarders.&lt;BR /&gt;
The second option isn't so good as can appear because HFs are a bottlenck for you data; if you haven't bandwidth problems the best choice is to filter them on Indexers.&lt;BR /&gt;
To do this see at &lt;A href="https://docs.splunk.com/Documentation/Splunk/7.3.1/Forwarding/Routeandfilterdatad"&gt;https://docs.splunk.com/Documentation/Splunk/7.3.1/Forwarding/Routeandfilterdatad&lt;/A&gt;&lt;BR /&gt;
Anyway, the steps are:&lt;/P&gt;

&lt;UL&gt;
&lt;LI&gt;identify the way to filter, two choices: discard something and take all the other logs, take something and discard the other;&lt;/LI&gt;
&lt;LI&gt;identify the regex to filter your logs;&lt;/LI&gt;
&lt;LI&gt;modify props.conf and transforms.conf on Indexers as below;&lt;/LI&gt;
&lt;LI&gt;restart Indexers;&lt;/LI&gt;
&lt;LI&gt;if you have Heavy Forwarders the files to modify are on HFs.&lt;/LI&gt;
&lt;/UL&gt;

&lt;P&gt;Discard specific events and keep the rest:&lt;/P&gt;

&lt;P&gt;props.conf:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[your_sourcetype]
TRANSFORMS-null= setnull
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;transforms.conf:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[setnull]
REGEX = &amp;lt;your_regex&amp;gt;
DEST_KEY = queue
FORMAT = nullQueue
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Keep specific events and discard the rest:&lt;BR /&gt;
props.conf:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[your_sourcetype]
TRANSFORMS-set= setnull,setparsing
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;transforms.conf:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[setnull]
REGEX = .
DEST_KEY = queue
FORMAT = nullQueue
[setparsing]
REGEX = &amp;gt;your_regex&amp;gt;
DEST_KEY = queue
FORMAT = indexQueue
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Bye.&lt;BR /&gt;
Giuseppe&lt;/P&gt;</description>
    <pubDate>Fri, 30 Aug 2019 12:23:07 GMT</pubDate>
    <dc:creator>gcusello</dc:creator>
    <dc:date>2019-08-30T12:23:07Z</dc:date>
    <item>
      <title>Filtering data block in Heavy Forwarder</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Filtering-data-block-in-Heavy-Forwarder/m-p/469035#M80688</link>
      <description>&lt;P&gt;Hello, I have a problem that I don't know how to solve. We are receiving logs in xml via universal forwarders. The logs are OK but we want to filter some of them. We couldn't filter in the original source so I am looking if I can filter by Heavy forwarder or not. &lt;/P&gt;

&lt;P&gt;For example, I receive an XML log (I attached)&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;AUDIT_RECORD TIMESTAMP="2019-07-12T02:54:30 UTC" RECORD_ID="91203630_2019-07-12T02:54:30" NAME="Query" CONNECTION_ID="111111" STATUS="0" STATUS_CODE="0" USER="myuser[mydb] @  [1.1.1.1]" OS_LOGIN="" HOST="" IP="1.1.1.1" COMMAND_CLASS="set_option" SQLTEXT="SET NAMES latin1"
AUDIT_RECORD TIMESTAMP="2019-07-12T02:54:30 UTC" RECORD_ID="91203631_2019-07-12T02:54:30" NAME="Query" CONNECTION_ID="111111" STATUS="0" STATUS_CODE="0" USER="myuser[mydb] @  [1.1.1.1]" OS_LOGIN="" HOST="" IP="1.1.1.1" COMMAND_CLASS="set_option" SQLTEXT="SET character_set_results = NULL"
AUDIT_RECORD TIMESTAMP="2019-07-12T02:54:30 UTC" RECORD_ID="91203632_2019-07-12T02:54:30" NAME="Connect" CONNECTION_ID="111111" STATUS="0" STATUS_CODE="0" USER="myuser" OS_LOGIN="" HOST="" IP="1.1.1.1" COMMAND_CLASS="connect" PRIV_USER="myuser" PROXY_USER="" DB="MY_INSTANCE"

AUDIT_RECORD TIMESTAMP="2019-07-12T02:54:30 UTC" RECORD_ID="91203630_2019-07-12T02:54:30" NAME="Query" CONNECTION_ID="**222222**" STATUS="0" STATUS_CODE="0" USER="myuser[mydb] @  [1.1.1.1]" OS_LOGIN="" HOST="" IP="1.1.1.1" COMMAND_CLASS="set_option" SQLTEXT="SET NAMES latin1"
AUDIT_RECORD TIMESTAMP="2019-07-12T02:54:30 UTC" RECORD_ID="91203631_2019-07-12T02:54:30" NAME="Query" CONNECTION_ID="**222222**" STATUS="0" STATUS_CODE="0" USER="myuser[mydb] @  [1.1.1.1]" OS_LOGIN="" HOST="" IP="1.1.1.1" COMMAND_CLASS="set_option" SQLTEXT="SET character_set_results = NULL"
AUDIT_RECORD TIMESTAMP="2019-07-12T02:54:30 UTC" RECORD_ID="91203632_2019-07-12T02:54:30" NAME="Connect" CONNECTION_ID="**222222**" STATUS="0" STATUS_CODE="0" USER="myuser" OS_LOGIN="" HOST="" IP="1.1.1.1" COMMAND_CLASS="connect" PRIV_USER="myuser" PROXY_USER="" DB="**INSTANCE_TO_FILTER**"
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I want to filter all events from "INSTANCE_TO_FILTER" which in this case tooks the CONNECTION_ID=222222 but I want to keep the rest. Is there a way to do that in Heavy forwarder?&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 02:00:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Filtering-data-block-in-Heavy-Forwarder/m-p/469035#M80688</guid>
      <dc:creator>jrballesteros05</dc:creator>
      <dc:date>2020-09-30T02:00:26Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering data block in Heavy Forwarder</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Filtering-data-block-in-Heavy-Forwarder/m-p/469036#M80689</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;Yes you can discard events which has word &lt;CODE&gt;INSTANCE_TO_FILTER&lt;/CODE&gt; on Heavy forwarders with below configurations.&lt;/P&gt;

&lt;P&gt;props.conf&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[yoursourcetype]
TRANSFORMS-xml_null = setnull
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;transforms.conf&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[setnull]
REGEX = INSTANCE_TO_FILTER
DEST_KEY = queue
FORMAT = nullQueue
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 29 Aug 2019 12:24:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Filtering-data-block-in-Heavy-Forwarder/m-p/469036#M80689</guid>
      <dc:creator>harsmarvania57</dc:creator>
      <dc:date>2019-08-29T12:24:52Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering data block in Heavy Forwarder</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Filtering-data-block-in-Heavy-Forwarder/m-p/469037#M80690</link>
      <description>&lt;P&gt;Hello, thanks for your answer. &lt;/P&gt;

&lt;P&gt;I think I did not explain properly. &lt;/P&gt;

&lt;P&gt;This configuration will filter the event:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; AUDIT_RECORD TIMESTAMP="2019-07-12T02:54:30 UTC" RECORD_ID="91203632_2019-07-12T02:54:30" NAME="Connect" CONNECTION_ID="**222222**" STATUS="0" STATUS_CODE="0" USER="myuser" OS_LOGIN="" HOST="" IP="1.1.1.1" COMMAND_CLASS="connect" PRIV_USER="myuser" PROXY_USER="" DB="**INSTANCE_TO_FILTER**"
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;But it won't filter these one:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;AUDIT_RECORD TIMESTAMP="2019-07-12T02:54:30 UTC" RECORD_ID="91203630_2019-07-12T02:54:30" NAME="Query" CONNECTION_ID="**222222**" STATUS="0" STATUS_CODE="0" USER="myuser[mydb] @  [1.1.1.1]" OS_LOGIN="" HOST="" IP="1.1.1.1" COMMAND_CLASS="set_option" SQLTEXT="SET NAMES latin1"
 AUDIT_RECORD TIMESTAMP="2019-07-12T02:54:30 UTC" RECORD_ID="91203631_2019-07-12T02:54:30" NAME="Query" CONNECTION_ID="**222222**" STATUS="0" STATUS_CODE="0" USER="myuser[mydb] @  [1.1.1.1]" OS_LOGIN="" HOST="" IP="1.1.1.1" COMMAND_CLASS="set_option" SQLTEXT="SET character_set_results = NULL"
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I want to filter the block, in this case "INSTANCE_TO_FILTER" has the CONNECTION_ID=222222 and I want to filter all the events that have CONNECTION_ID=222222. &lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 02:00:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Filtering-data-block-in-Heavy-Forwarder/m-p/469037#M80690</guid>
      <dc:creator>jrballesteros05</dc:creator>
      <dc:date>2020-09-30T02:00:32Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering data block in Heavy Forwarder</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Filtering-data-block-in-Heavy-Forwarder/m-p/469038#M80691</link>
      <description>&lt;P&gt;Can you please confirm whether below block is single event or those are 3 different events ?&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; AUDIT_RECORD TIMESTAMP="2019-07-12T02:54:30 UTC" RECORD_ID="91203630_2019-07-12T02:54:30" NAME="Query" CONNECTION_ID="**222222**" STATUS="0" STATUS_CODE="0" USER="myuser[mydb] @  [1.1.1.1]" OS_LOGIN="" HOST="" IP="1.1.1.1" COMMAND_CLASS="set_option" SQLTEXT="SET NAMES latin1"
 AUDIT_RECORD TIMESTAMP="2019-07-12T02:54:30 UTC" RECORD_ID="91203631_2019-07-12T02:54:30" NAME="Query" CONNECTION_ID="**222222**" STATUS="0" STATUS_CODE="0" USER="myuser[mydb] @  [1.1.1.1]" OS_LOGIN="" HOST="" IP="1.1.1.1" COMMAND_CLASS="set_option" SQLTEXT="SET character_set_results = NULL"
 AUDIT_RECORD TIMESTAMP="2019-07-12T02:54:30 UTC" RECORD_ID="91203632_2019-07-12T02:54:30" NAME="Connect" CONNECTION_ID="**222222**" STATUS="0" STATUS_CODE="0" USER="myuser" OS_LOGIN="" HOST="" IP="1.1.1.1" COMMAND_CLASS="connect" PRIV_USER="myuser" PROXY_USER="" DB="**INSTANCE_TO_FILTER**"
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 29 Aug 2019 12:39:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Filtering-data-block-in-Heavy-Forwarder/m-p/469038#M80691</guid>
      <dc:creator>harsmarvania57</dc:creator>
      <dc:date>2019-08-29T12:39:20Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering data block in Heavy Forwarder</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Filtering-data-block-in-Heavy-Forwarder/m-p/469039#M80692</link>
      <description>&lt;P&gt;Yes, there are different events. But in this case they have in common the CONNECTION_ID field.&lt;/P&gt;</description>
      <pubDate>Thu, 29 Aug 2019 12:55:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Filtering-data-block-in-Heavy-Forwarder/m-p/469039#M80692</guid>
      <dc:creator>jrballesteros05</dc:creator>
      <dc:date>2019-08-29T12:55:19Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering data block in Heavy Forwarder</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Filtering-data-block-in-Heavy-Forwarder/m-p/469040#M80693</link>
      <description>&lt;P&gt;If those are different events then in splunk there are no such feature to discard previous event or new event based on REGEX matching for current event. I am converting my answer to comment so that if anyone else has any idea, they can share.&lt;/P&gt;</description>
      <pubDate>Thu, 29 Aug 2019 12:58:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Filtering-data-block-in-Heavy-Forwarder/m-p/469040#M80693</guid>
      <dc:creator>harsmarvania57</dc:creator>
      <dc:date>2019-08-29T12:58:43Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering data block in Heavy Forwarder</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Filtering-data-block-in-Heavy-Forwarder/m-p/469041#M80694</link>
      <description>&lt;P&gt;Hi jrballesteros05,&lt;BR /&gt;
You can filter logs on the Indexers, before indexing or on Heavy Forwarders.&lt;BR /&gt;
The second option isn't so good as can appear because HFs are a bottlenck for you data; if you haven't bandwidth problems the best choice is to filter them on Indexers.&lt;BR /&gt;
To do this see at &lt;A href="https://docs.splunk.com/Documentation/Splunk/7.3.1/Forwarding/Routeandfilterdatad"&gt;https://docs.splunk.com/Documentation/Splunk/7.3.1/Forwarding/Routeandfilterdatad&lt;/A&gt;&lt;BR /&gt;
Anyway, the steps are:&lt;/P&gt;

&lt;UL&gt;
&lt;LI&gt;identify the way to filter, two choices: discard something and take all the other logs, take something and discard the other;&lt;/LI&gt;
&lt;LI&gt;identify the regex to filter your logs;&lt;/LI&gt;
&lt;LI&gt;modify props.conf and transforms.conf on Indexers as below;&lt;/LI&gt;
&lt;LI&gt;restart Indexers;&lt;/LI&gt;
&lt;LI&gt;if you have Heavy Forwarders the files to modify are on HFs.&lt;/LI&gt;
&lt;/UL&gt;

&lt;P&gt;Discard specific events and keep the rest:&lt;/P&gt;

&lt;P&gt;props.conf:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[your_sourcetype]
TRANSFORMS-null= setnull
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;transforms.conf:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[setnull]
REGEX = &amp;lt;your_regex&amp;gt;
DEST_KEY = queue
FORMAT = nullQueue
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Keep specific events and discard the rest:&lt;BR /&gt;
props.conf:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[your_sourcetype]
TRANSFORMS-set= setnull,setparsing
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;transforms.conf:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[setnull]
REGEX = .
DEST_KEY = queue
FORMAT = nullQueue
[setparsing]
REGEX = &amp;gt;your_regex&amp;gt;
DEST_KEY = queue
FORMAT = indexQueue
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Bye.&lt;BR /&gt;
Giuseppe&lt;/P&gt;</description>
      <pubDate>Fri, 30 Aug 2019 12:23:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Filtering-data-block-in-Heavy-Forwarder/m-p/469041#M80694</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2019-08-30T12:23:07Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering data block in Heavy Forwarder</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Filtering-data-block-in-Heavy-Forwarder/m-p/469042#M80695</link>
      <description>&lt;P&gt;Hello @gcusello. &lt;/P&gt;

&lt;P&gt;It is like the comments. I filtered logs in the past, in the HF and the indexer. But I mean in the specific case I post in the question. I cannot. &lt;/P&gt;</description>
      <pubDate>Thu, 05 Sep 2019 13:00:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Filtering-data-block-in-Heavy-Forwarder/m-p/469042#M80695</guid>
      <dc:creator>jrballesteros05</dc:creator>
      <dc:date>2019-09-05T13:00:35Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering data block in Heavy Forwarder</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Filtering-data-block-in-Heavy-Forwarder/m-p/469043#M80696</link>
      <description>&lt;P&gt;Sorry I misunderstood!&lt;/P&gt;

&lt;P&gt;Anyway, the way to proceed is the same on indexers and on Heavy Forwarders, there isn't any difference: you have to craete a props.conf  and a transforms.conf.&lt;/P&gt;

&lt;P&gt;About the filter, let me understand: do you want to filter the event where there's the "&lt;STRONG&gt;INSTANCE_TO_FILTER&lt;/STRONG&gt;" string, or the events from this string to what?&lt;BR /&gt;
In first case it's easy because you can send to nullqueue events with this regex.&lt;BR /&gt;
In the second case is more difficoult because there isn't any infortmation to filter the following events.&lt;/P&gt;

&lt;P&gt;bye.&lt;BR /&gt;
Giuseppe&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 02:04:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Filtering-data-block-in-Heavy-Forwarder/m-p/469043#M80696</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2020-09-30T02:04:45Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering data block in Heavy Forwarder</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Filtering-data-block-in-Heavy-Forwarder/m-p/469044#M80697</link>
      <description>&lt;P&gt;Hi. I have been reading about that and I think I cannot filter in that way. &lt;/P&gt;

&lt;P&gt;I have three different events: &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;  AUDIT_RECORD TIMESTAMP="2019-07-12T02:54:30 UTC" RECORD_ID="91203630_2019-07-12T02:54:30" NAME="Query" CONNECTION_ID="**222222**" STATUS="0" STATUS_CODE="0" USER="myuser[mydb] @  [1.1.1.1]" OS_LOGIN="" HOST="" IP="1.1.1.1" COMMAND_CLASS="set_option" SQLTEXT="SET NAMES latin1"
  AUDIT_RECORD TIMESTAMP="2019-07-12T02:54:30 UTC" RECORD_ID="91203631_2019-07-12T02:54:30" NAME="Query" CONNECTION_ID="**222222**" STATUS="0" STATUS_CODE="0" USER="myuser[mydb] @  [1.1.1.1]" OS_LOGIN="" HOST="" IP="1.1.1.1" COMMAND_CLASS="set_option" SQLTEXT="SET character_set_results = NULL"
  AUDIT_RECORD TIMESTAMP="2019-07-12T02:54:30 UTC" RECORD_ID="91203632_2019-07-12T02:54:30" NAME="Connect" CONNECTION_ID="**222222**" STATUS="0" STATUS_CODE="0" USER="myuser" OS_LOGIN="" HOST="" IP="1.1.1.1" COMMAND_CLASS="connect" PRIV_USER="myuser" PROXY_USER="" DB="**INSTANCE_TO_FILTER**"
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I want to filter all the events with DB="&lt;STRONG&gt;INSTANCE_TO_FILTER&lt;/STRONG&gt;", which in this case has an CONNECTION_ID="&lt;STRONG&gt;222222&lt;/STRONG&gt;", but it's difficult because are different events.  &lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 02:08:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Filtering-data-block-in-Heavy-Forwarder/m-p/469044#M80697</guid>
      <dc:creator>jrballesteros05</dc:creator>
      <dc:date>2020-09-30T02:08:14Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering data block in Heavy Forwarder</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Filtering-data-block-in-Heavy-Forwarder/m-p/469045#M80698</link>
      <description>&lt;P&gt;Let me understand: you want to filter only the last event (the one with the string DB="INSTANCE_TO_FILTER") but not the others, is it correct?&lt;BR /&gt;
If this is your request try to put on your Heavy Forwarders:&lt;BR /&gt;
props.conf:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[your_sourcetype]
TRANSFORMS-null= setnull
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;transforms.conf:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[setnull]
REGEX = DB\=\"INSTANCE_TO_FILTER\"
DEST_KEY = queue
FORMAT = nullQueue
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Bye.&lt;BR /&gt;
Giuseppe&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 02:04:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Filtering-data-block-in-Heavy-Forwarder/m-p/469045#M80698</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2020-09-30T02:04:47Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering data block in Heavy Forwarder</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Filtering-data-block-in-Heavy-Forwarder/m-p/469046#M80699</link>
      <description>&lt;P&gt;No, I want to filter  DB="INSTANCE_TO_FILTER" which in this case had a CONNECTION_ID="222222", and all the events which has CONNECTION_ID="222222".&lt;/P&gt;

&lt;P&gt;Then if there is another event  DB="INSTANCE_TO_FILTER"  with CONNECTION_ID="333333" I want to filter all the events with CONNECTION_ID="333333"&lt;/P&gt;

&lt;P&gt;That is why your filter does not work for me because it is going to filter only the event with DB="INSTANCE_TO_FILTER" but it won't filter the other ones.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 02:08:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Filtering-data-block-in-Heavy-Forwarder/m-p/469046#M80699</guid>
      <dc:creator>jrballesteros05</dc:creator>
      <dc:date>2020-09-30T02:08:20Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering data block in Heavy Forwarder</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Filtering-data-block-in-Heavy-Forwarder/m-p/469047#M80700</link>
      <description>&lt;P&gt;Ok I understood!&lt;BR /&gt;
I don't think that is possible in Splunk (I hope to be wrong but I don't think!).&lt;BR /&gt;
The only way is pre-parse events with an external script before ingestion in UFs.&lt;/P&gt;

&lt;P&gt;Bye.&lt;BR /&gt;
Giuseppe&lt;/P&gt;</description>
      <pubDate>Thu, 05 Sep 2019 14:17:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Filtering-data-block-in-Heavy-Forwarder/m-p/469047#M80700</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2019-09-05T14:17:26Z</dc:date>
    </item>
  </channel>
</rss>

