<?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: Best way to nullQueue DNS logs by source in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/Best-way-to-nullQueue-DNS-logs-by-source/m-p/490761#M83885</link>
    <description>&lt;P&gt;@adalbor need two pieces of info:&lt;BR /&gt;
1) what is the deployment architecture?&lt;BR /&gt;
2) Did you reload the indexers to get the new props and transforms config ?&lt;/P&gt;</description>
    <pubDate>Mon, 16 Mar 2020 23:55:40 GMT</pubDate>
    <dc:creator>anmolpatel</dc:creator>
    <dc:date>2020-03-16T23:55:40Z</dc:date>
    <item>
      <title>Best way to nullQueue DNS logs by source</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Best-way-to-nullQueue-DNS-logs-by-source/m-p/490759#M83883</link>
      <description>&lt;P&gt;Hey All,&lt;/P&gt;

&lt;P&gt;Was just curious if there was a more efficient way of dropping DNS events by the actual query source rather than what I have below.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[MSAD:NT6:DNS]
TRANSFORMS-dropdns=dropdns

[dropdns]
REGEX=.*IPOFSOURCE.*
DEST_KEY=queue
FORMAT=nullQueue
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 11 Mar 2020 15:33:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Best-way-to-nullQueue-DNS-logs-by-source/m-p/490759#M83883</guid>
      <dc:creator>adalbor</dc:creator>
      <dc:date>2020-03-11T15:33:51Z</dc:date>
    </item>
    <item>
      <title>Re: Best way to nullQueue DNS logs by source</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Best-way-to-nullQueue-DNS-logs-by-source/m-p/490760#M83884</link>
      <description>&lt;P&gt;I modified it to include another IP but it doesnt appear to be working.  Have this on all of my IDX's.&lt;BR /&gt;
Any suggestions?&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[MSAD:NT6:DNS]
 TRANSFORMS-dropdns = dropdns

 [dropdns]
 REGEX=.*1.1.1.1.*|.*2.2.2.2.*
 DEST_KEY=queue
 FORMAT=nullQueue
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 16 Mar 2020 17:37:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Best-way-to-nullQueue-DNS-logs-by-source/m-p/490760#M83884</guid>
      <dc:creator>adalbor</dc:creator>
      <dc:date>2020-03-16T17:37:54Z</dc:date>
    </item>
    <item>
      <title>Re: Best way to nullQueue DNS logs by source</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Best-way-to-nullQueue-DNS-logs-by-source/m-p/490761#M83885</link>
      <description>&lt;P&gt;@adalbor need two pieces of info:&lt;BR /&gt;
1) what is the deployment architecture?&lt;BR /&gt;
2) Did you reload the indexers to get the new props and transforms config ?&lt;/P&gt;</description>
      <pubDate>Mon, 16 Mar 2020 23:55:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Best-way-to-nullQueue-DNS-logs-by-source/m-p/490761#M83885</guid>
      <dc:creator>anmolpatel</dc:creator>
      <dc:date>2020-03-16T23:55:40Z</dc:date>
    </item>
    <item>
      <title>Re: Best way to nullQueue DNS logs by source</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Best-way-to-nullQueue-DNS-logs-by-source/m-p/490762#M83886</link>
      <description>&lt;P&gt;1) Clustered indexers and UF's on the servers with the DNS logs&lt;BR /&gt;
2) Yes after every change&lt;/P&gt;</description>
      <pubDate>Tue, 17 Mar 2020 13:37:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Best-way-to-nullQueue-DNS-logs-by-source/m-p/490762#M83886</guid>
      <dc:creator>adalbor</dc:creator>
      <dc:date>2020-03-17T13:37:28Z</dc:date>
    </item>
    <item>
      <title>Re: Best way to nullQueue DNS logs by source</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Best-way-to-nullQueue-DNS-logs-by-source/m-p/490763#M83887</link>
      <description>&lt;P&gt;I ended up resolving the issue I had.  The UF in question that wasn't working was going through a HF rather than straight to my IDX's&lt;/P&gt;

&lt;P&gt;Applied the following to the HF's and IDX's and it started dropping the matching events.&lt;/P&gt;

&lt;P&gt;Support also recommended I use source rather than sourcetype as it was more reliable.&lt;/P&gt;

&lt;P&gt;Props.conf&lt;BR /&gt;
[source::c:\DNSLOGS\dns.log]&lt;BR /&gt;
TRANSFORMS-dropdns=dropdns1,dropdns2&lt;/P&gt;

&lt;P&gt;Transforms.conf&lt;BR /&gt;
[dropdns1]&lt;BR /&gt;
REGEX = .&lt;EM&gt;1.1.1.1.&lt;/EM&gt;&lt;BR /&gt;
DEST_KEY = queue&lt;BR /&gt;
FORMAT = nullQueue&lt;/P&gt;

&lt;P&gt;[dropdns2]&lt;BR /&gt;
REGEX = .&lt;EM&gt;2.2.2.2.&lt;/EM&gt;&lt;BR /&gt;
DEST_KEY = queue&lt;BR /&gt;
FORMAT = nullQueue&lt;/P&gt;</description>
      <pubDate>Tue, 24 Mar 2020 15:47:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Best-way-to-nullQueue-DNS-logs-by-source/m-p/490763#M83887</guid>
      <dc:creator>adalbor</dc:creator>
      <dc:date>2020-03-24T15:47:22Z</dc:date>
    </item>
  </channel>
</rss>

