<?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: WinEventLog filters failing :Windows 2003 and splunk 6 SPL-78726 in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/WinEventLog-filters-failing-Windows-2003-and-splunk-6-SPL-78726/m-p/111464#M23355</link>
    <description>&lt;P&gt;change on  Indexers and Heavy forwarders&lt;/P&gt;</description>
    <pubDate>Tue, 08 Apr 2014 18:19:06 GMT</pubDate>
    <dc:creator>yannK</dc:creator>
    <dc:date>2014-04-08T18:19:06Z</dc:date>
    <item>
      <title>WinEventLog filters failing :Windows 2003 and splunk 6 SPL-78726</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/WinEventLog-filters-failing-Windows-2003-and-splunk-6-SPL-78726/m-p/111457#M23348</link>
      <description>&lt;P&gt;After upgrading my Windows servers 2003 to Splunk 6. I discovered that all my nullQueues filter stopped working, and I indexed mode data than before.&lt;/P&gt;

&lt;P&gt;I checked, and the reason is that the sourcetype name for the &lt;STRONG&gt;WinEventLog has a different case for the first letter of the channel&lt;/STRONG&gt; :&lt;/P&gt;

&lt;UL&gt;
&lt;LI&gt;WinEventLog:Security&lt;/LI&gt;
&lt;LI&gt;WinEventLog:System&lt;/LI&gt;
&lt;LI&gt;WinEventLog:Application&lt;/LI&gt;
&lt;LI&gt;WinEventLog:Capitalized-channel-name&lt;/LI&gt;
&lt;/UL&gt;

&lt;P&gt;became under &lt;STRONG&gt;Splunk 6 for Win 2003 only&lt;/STRONG&gt;&lt;/P&gt;

&lt;UL&gt;
&lt;LI&gt;WinEventLog:security&lt;/LI&gt;
&lt;LI&gt;WinEventLog:system&lt;/LI&gt;
&lt;LI&gt;WinEventLog:application&lt;/LI&gt;
&lt;LI&gt;WinEventLog:smallcaps-channel-name&lt;/LI&gt;
&lt;/UL&gt;

&lt;HR /&gt;

&lt;P&gt;FYI my filter on the indexers and heavy forwarders were :&lt;/P&gt;

&lt;UL&gt;
&lt;LI&gt;in props.conf&lt;/LI&gt;
&lt;/UL&gt;

&lt;P&gt;&lt;CODE&gt;[WinEventLog:Security]&lt;BR /&gt;
TRANSFORMS-nullqueuefilter=MyNullQueueFilter&lt;BR /&gt;
&lt;/CODE&gt;&lt;/P&gt;

&lt;UL&gt;
&lt;LI&gt;in transforms.conf&lt;/LI&gt;
&lt;/UL&gt;

&lt;P&gt;&lt;CODE&gt;[MyNullQueueFilter]&lt;BR /&gt;
REGEX = (Windows Update) &lt;BR /&gt;
DEST_KEY = queue &lt;BR /&gt;
FORMAT = nullQueue&lt;BR /&gt;
&lt;/CODE&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Jan 2014 22:39:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/WinEventLog-filters-failing-Windows-2003-and-splunk-6-SPL-78726/m-p/111457#M23348</guid>
      <dc:creator>yannK</dc:creator>
      <dc:date>2014-01-13T22:39:58Z</dc:date>
    </item>
    <item>
      <title>Re: WinEventLog filters failing :Windows 2003 and splunk 6 SPL-78726</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/WinEventLog-filters-failing-Windows-2003-and-splunk-6-SPL-78726/m-p/111458#M23349</link>
      <description>&lt;P&gt;This is a known bug SPL-78726, the fix is not yet released in Splunk 6.0 or 6.0.1&lt;/P&gt;

&lt;P&gt;For the search, the sourcetypes are case insensitive, so you will find the events.&lt;BR /&gt;
But for the props.conf matching the regex and stanza are case sensitive, so they may not apply anymore.&lt;/P&gt;

&lt;P&gt;Workaround :&lt;/P&gt;

&lt;UL&gt;
&lt;LI&gt;change your props.conf to match all your formats&lt;/LI&gt;
&lt;/UL&gt;

&lt;P&gt;`&lt;BR /&gt;
  [WinEventLog:Security]&lt;BR /&gt;
  TRANSFORMS-nullqueuefilter=MyNullQueueFilter&lt;/P&gt;

&lt;P&gt;[WinEventLog:security]&lt;BR /&gt;
  TRANSFORMS-nullqueuefilter=MyNullQueueFilter&lt;BR /&gt;
` &lt;/P&gt;

&lt;UL&gt;
&lt;LI&gt;force the sourcetype name in the inputs.conf&lt;/LI&gt;
&lt;/UL&gt;

&lt;P&gt;&lt;CODE&gt;&lt;BR /&gt;
[WinEventLog://Security]&lt;BR /&gt;
sourcetype=WinEventLog:Security&lt;BR /&gt;
&lt;/CODE&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Jan 2014 22:45:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/WinEventLog-filters-failing-Windows-2003-and-splunk-6-SPL-78726/m-p/111458#M23349</guid>
      <dc:creator>yannK</dc:creator>
      <dc:date>2014-01-13T22:45:08Z</dc:date>
    </item>
    <item>
      <title>Re: WinEventLog filters failing :Windows 2003 and splunk 6 SPL-78726</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/WinEventLog-filters-failing-Windows-2003-and-splunk-6-SPL-78726/m-p/111459#M23350</link>
      <description>&lt;P&gt;which inputs.conf should I change this in the apps or the system/local directory?&lt;/P&gt;</description>
      <pubDate>Mon, 31 Mar 2014 20:39:39 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/WinEventLog-filters-failing-Windows-2003-and-splunk-6-SPL-78726/m-p/111459#M23350</guid>
      <dc:creator>aberdamy</dc:creator>
      <dc:date>2014-03-31T20:39:39Z</dc:date>
    </item>
    <item>
      <title>Re: WinEventLog filters failing :Windows 2003 and splunk 6 SPL-78726</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/WinEventLog-filters-failing-Windows-2003-and-splunk-6-SPL-78726/m-p/111460#M23351</link>
      <description>&lt;P&gt;As you wish, &lt;BR /&gt;
- system/local will always win, so this is a very definitive place to change&lt;BR /&gt;
- While an app can be deployed easily to all instances using a deployment server&lt;/P&gt;</description>
      <pubDate>Mon, 31 Mar 2014 21:06:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/WinEventLog-filters-failing-Windows-2003-and-splunk-6-SPL-78726/m-p/111460#M23351</guid>
      <dc:creator>yannK</dc:creator>
      <dc:date>2014-03-31T21:06:23Z</dc:date>
    </item>
    <item>
      <title>Re: WinEventLog filters failing :Windows 2003 and splunk 6 SPL-78726</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/WinEventLog-filters-failing-Windows-2003-and-splunk-6-SPL-78726/m-p/111461#M23352</link>
      <description>&lt;P&gt;So do we change the props.conf on the forwarder or indexer?  Also, are these two separate workarounds that will solve the issue or are they to be used together?&lt;/P&gt;</description>
      <pubDate>Tue, 01 Apr 2014 12:47:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/WinEventLog-filters-failing-Windows-2003-and-splunk-6-SPL-78726/m-p/111461#M23352</guid>
      <dc:creator>aberdamy</dc:creator>
      <dc:date>2014-04-01T12:47:47Z</dc:date>
    </item>
    <item>
      <title>Re: WinEventLog filters failing :Windows 2003 and splunk 6 SPL-78726</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/WinEventLog-filters-failing-Windows-2003-and-splunk-6-SPL-78726/m-p/111462#M23353</link>
      <description>&lt;P&gt;the indextime filters only applies on the instances parsing the events : Indexers and Heavy forwarders (if any)&lt;/P&gt;

&lt;P&gt;If you had custom props.conf that were working, change they were they already exist.&lt;/P&gt;</description>
      <pubDate>Tue, 01 Apr 2014 16:54:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/WinEventLog-filters-failing-Windows-2003-and-splunk-6-SPL-78726/m-p/111462#M23353</guid>
      <dc:creator>yannK</dc:creator>
      <dc:date>2014-04-01T16:54:17Z</dc:date>
    </item>
    <item>
      <title>Re: WinEventLog filters failing :Windows 2003 and splunk 6 SPL-78726</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/WinEventLog-filters-failing-Windows-2003-and-splunk-6-SPL-78726/m-p/111463#M23354</link>
      <description>&lt;P&gt;Thank you for your response however I'm not sure what you're saying here could you please clarify?&lt;/P&gt;</description>
      <pubDate>Tue, 01 Apr 2014 19:50:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/WinEventLog-filters-failing-Windows-2003-and-splunk-6-SPL-78726/m-p/111463#M23354</guid>
      <dc:creator>aberdamy</dc:creator>
      <dc:date>2014-04-01T19:50:42Z</dc:date>
    </item>
    <item>
      <title>Re: WinEventLog filters failing :Windows 2003 and splunk 6 SPL-78726</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/WinEventLog-filters-failing-Windows-2003-and-splunk-6-SPL-78726/m-p/111464#M23355</link>
      <description>&lt;P&gt;change on  Indexers and Heavy forwarders&lt;/P&gt;</description>
      <pubDate>Tue, 08 Apr 2014 18:19:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/WinEventLog-filters-failing-Windows-2003-and-splunk-6-SPL-78726/m-p/111464#M23355</guid>
      <dc:creator>yannK</dc:creator>
      <dc:date>2014-04-08T18:19:06Z</dc:date>
    </item>
  </channel>
</rss>

