<?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: Transform/props not working. in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/Transform-props-not-working/m-p/191387#M38092</link>
    <description>&lt;P&gt;Make sure your file is called transform*&lt;EM&gt;s&lt;/EM&gt;*.conf.&lt;/P&gt;</description>
    <pubDate>Mon, 28 Sep 2020 15:33:05 GMT</pubDate>
    <dc:creator>martin_mueller</dc:creator>
    <dc:date>2020-09-28T15:33:05Z</dc:date>
    <item>
      <title>Transform/props not working.</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Transform-props-not-working/m-p/191385#M38090</link>
      <description>&lt;P&gt;I am trying to filter out Windows Event logs and only allow Errors and Critical event logs to be indexed and I want to drop everything else.  &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;Props.conf
[WinEventLog:Application]
TRANSFORMS-FilterEvents = FilterWarningEvents, FilterInformationEvents
[WinEventLog:Security]
TRANSFORMS-FilterEvents = FilterWarningEvents, FilterInformationEvents
[WinEventLog:System]
TRANSFORMS-FilterEvents = FilterWarningEvents, FilterInformationEvents

Transform.conf
[FilterInformationEvents]
REGEX = (?ms)(Type=Information)
DEST_KEY = queue
FORMAT = nullQueue

[FilterWarningEvents]
REGEX = (?ms)(Type=Warning)
DEST_KEY = queue
FORMAT = nullQueue
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;These are on my indexer but I still see informational and warnings being indexed.&lt;/P&gt;</description>
      <pubDate>Fri, 27 Dec 2013 20:48:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Transform-props-not-working/m-p/191385#M38090</guid>
      <dc:creator>mileven</dc:creator>
      <dc:date>2013-12-27T20:48:54Z</dc:date>
    </item>
    <item>
      <title>Re: Transform/props not working.</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Transform-props-not-working/m-p/191386#M38091</link>
      <description>&lt;P&gt;Do your events have these exact strings in them, i.e. "Type=Information"? Usually Windows logs rather have something like "Type: Information" instead.&lt;/P&gt;</description>
      <pubDate>Fri, 27 Dec 2013 21:15:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Transform-props-not-working/m-p/191386#M38091</guid>
      <dc:creator>Ayn</dc:creator>
      <dc:date>2013-12-27T21:15:14Z</dc:date>
    </item>
    <item>
      <title>Re: Transform/props not working.</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Transform-props-not-working/m-p/191387#M38092</link>
      <description>&lt;P&gt;Make sure your file is called transform*&lt;EM&gt;s&lt;/EM&gt;*.conf.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 15:33:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Transform-props-not-working/m-p/191387#M38092</guid>
      <dc:creator>martin_mueller</dc:creator>
      <dc:date>2020-09-28T15:33:05Z</dc:date>
    </item>
    <item>
      <title>Re: Transform/props not working.</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Transform-props-not-working/m-p/191388#M38093</link>
      <description>&lt;P&gt;Type is Type=Information.  Not sure what you mean by make sure you file is called in transforms.conf&lt;/P&gt;</description>
      <pubDate>Fri, 27 Dec 2013 21:26:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Transform-props-not-working/m-p/191388#M38093</guid>
      <dc:creator>mileven</dc:creator>
      <dc:date>2013-12-27T21:26:04Z</dc:date>
    </item>
    <item>
      <title>Re: Transform/props not working.</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Transform-props-not-working/m-p/191389#M38094</link>
      <description>&lt;P&gt;OK, as long as you're not confusing the field "Type" in Splunk having the value "Information" with that the raw event actually has the exact string "Type=Information" in it. Maybe a good idea to paste a sample event here to make sure this is not the case.&lt;/P&gt;</description>
      <pubDate>Fri, 27 Dec 2013 21:41:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Transform-props-not-working/m-p/191389#M38094</guid>
      <dc:creator>Ayn</dc:creator>
      <dc:date>2013-12-27T21:41:44Z</dc:date>
    </item>
    <item>
      <title>Re: Transform/props not working.</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Transform-props-not-working/m-p/191390#M38095</link>
      <description>&lt;P&gt;LogName=System SourceName=Microsoft-Windows-GroupPolicy EventCode=1500 EventType=4 Type=Information ComputerName=STRR1INFHPV01.redmond.corp.microsoft.com User=SYSTEM Sid=S-1-5-18 SidType=1 TaskCategory=None OpCode=Start RecordNumber=46013 Keywords=None&lt;/P&gt;

&lt;P&gt;pulled directly from what is being indexed.&lt;/P&gt;</description>
      <pubDate>Fri, 27 Dec 2013 21:46:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Transform-props-not-working/m-p/191390#M38095</guid>
      <dc:creator>mileven</dc:creator>
      <dc:date>2013-12-27T21:46:30Z</dc:date>
    </item>
    <item>
      <title>Re: Transform/props not working.</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Transform-props-not-working/m-p/191391#M38096</link>
      <description>&lt;P&gt;Those look like their coming from Snare, which strips the multiline windows logs into a single line syslog style log where the key value pairs are delimited with an equal sign. &lt;/P&gt;

&lt;P&gt;typically the sourcetype for that is windows_snare_syslog. I'm wondering if you are confusing sourcetypes and if those sourcetypes you've listed are actually pointing at the  traditional multiline events that Ayn has described... &lt;/P&gt;

&lt;P&gt;Ayn's reference to the spelling of transform(S) was because you left the plural S off of the word in your example... the file must be named with the plural to work...&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 15:33:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Transform-props-not-working/m-p/191391#M38096</guid>
      <dc:creator>rsennett_splunk</dc:creator>
      <dc:date>2020-09-28T15:33:12Z</dc:date>
    </item>
    <item>
      <title>Re: Transform/props not working.</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Transform-props-not-working/m-p/191392#M38097</link>
      <description>&lt;P&gt;To verify that your regex actually match your events in splunk. Try to search in splunk with the regex command :&lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;sourcetype=WinEventLog:Application OR sourcetype=WinEventLog:System OR sourcetype=WinEventLog:Security | regex _raw="(?ms)(Type=Information)" | table Type sourcetype _raw&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;maybe are you not accounting for some spaces or separators.&lt;/P&gt;</description>
      <pubDate>Mon, 13 Jan 2014 19:46:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Transform-props-not-working/m-p/191392#M38097</guid>
      <dc:creator>yannK</dc:creator>
      <dc:date>2014-01-13T19:46:02Z</dc:date>
    </item>
    <item>
      <title>Re: Transform/props not working.</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Transform-props-not-working/m-p/191393#M38098</link>
      <description>&lt;P&gt;Here is just an example of &lt;A href="https://support.microsoft.com/en-us/help/2002303/event-1500-logged-when-snmp-is-enabled-on-windows-server-2016-windows"&gt;event ID 1500&lt;/A&gt; - where it says &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;Event ID: 1500
Task Category: None
Level: Error
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;this signifies there is some alteration in logs while coming from source as @rsennett suggested&lt;/P&gt;</description>
      <pubDate>Tue, 05 Dec 2017 09:40:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Transform-props-not-working/m-p/191393#M38098</guid>
      <dc:creator>saurabh_tek11</dc:creator>
      <dc:date>2017-12-05T09:40:25Z</dc:date>
    </item>
  </channel>
</rss>

