<?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: Can I parse data at the indexer since I am using a Universal Forwarder on my source and how will that impact licensing? in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/Can-I-parse-data-at-the-indexer-since-I-am-using-a-Universal/m-p/161746#M32813</link>
    <description>&lt;P&gt;Replacing &lt;CODE&gt;_raw&lt;/CODE&gt; isn't necessary, you can tell the UF to not even include that data.&lt;/P&gt;</description>
    <pubDate>Wed, 22 Apr 2015 12:35:10 GMT</pubDate>
    <dc:creator>martin_mueller</dc:creator>
    <dc:date>2015-04-22T12:35:10Z</dc:date>
    <item>
      <title>Can I parse data at the indexer since I am using a Universal Forwarder on my source and how will that impact licensing?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Can-I-parse-data-at-the-indexer-since-I-am-using-a-Universal/m-p/161741#M32808</link>
      <description>&lt;P&gt;I am a using a Universal Forwarder on my domain controller to forward security events to a Splunk indexer and would like to filter out the static text "This event is generated..." in the security events to reduce the data consumption by the indexer.  I know this can be done with a Heavy Forwarder at the source, but can I do this at the Indexer with the following entries in the props.conf and transforms.conf?  Will it reduce my data consumption/license or is it too late by the time it reaches my indexer?  Thanks!&lt;/P&gt;

&lt;P&gt;Source: Windows Domain Controller (Universal Forwarder)&lt;/P&gt;

&lt;P&gt;Splunk Indexer v6.1.x:&lt;/P&gt;

&lt;P&gt;Props.conf&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[WinEventLog:Security]
TRANSFORMS_ShortenMsg=ShortenSecMsg
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Transforms.conf&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[ShortenSecMsg]
REGEX=(?msi)(.*)This event is generated
DEST_KEY=_raw
FORMAT=$1
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 21 Apr 2015 15:55:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Can-I-parse-data-at-the-indexer-since-I-am-using-a-Universal/m-p/161741#M32808</guid>
      <dc:creator>Magnus_001</dc:creator>
      <dc:date>2015-04-21T15:55:14Z</dc:date>
    </item>
    <item>
      <title>Re: Can I parse data at the indexer since I am using a Universal Forwarder on my source and how will that impact licensing?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Can-I-parse-data-at-the-indexer-since-I-am-using-a-Universal/m-p/161742#M32809</link>
      <description>&lt;P&gt;use a &lt;STRONG&gt;heavy forwarder&lt;/STRONG&gt; to do it .&lt;BR /&gt;
because &lt;STRONG&gt;Universal Forwarder&lt;/STRONG&gt;  can not parse data .&lt;BR /&gt;
&lt;A href="http://docs.splunk.com/Splexicon:Heavyforwarder"&gt;http://docs.splunk.com/Splexicon:Heavyforwarder&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Apr 2015 16:10:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Can-I-parse-data-at-the-indexer-since-I-am-using-a-Universal/m-p/161742#M32809</guid>
      <dc:creator>fdi01</dc:creator>
      <dc:date>2015-04-21T16:10:53Z</dc:date>
    </item>
    <item>
      <title>Re: Can I parse data at the indexer since I am using a Universal Forwarder on my source and how will that impact licensing?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Can-I-parse-data-at-the-indexer-since-I-am-using-a-Universal/m-p/161743#M32810</link>
      <description>&lt;P&gt;Keep using a Universal Forwarder and check out the settings for WinEventLog type inputs at &lt;A href="http://docs.splunk.com/Documentation/Splunk/6.2.2/admin/inputsconf"&gt;http://docs.splunk.com/Documentation/Splunk/6.2.2/admin/inputsconf&lt;/A&gt; - I'm no Windows expert, but you might just be looking for &lt;CODE&gt;suppress_text = 1&lt;/CODE&gt;.&lt;/P&gt;</description>
      <pubDate>Tue, 21 Apr 2015 22:35:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Can-I-parse-data-at-the-indexer-since-I-am-using-a-Universal/m-p/161743#M32810</guid>
      <dc:creator>martin_mueller</dc:creator>
      <dc:date>2015-04-21T22:35:41Z</dc:date>
    </item>
    <item>
      <title>Re: Can I parse data at the indexer since I am using a Universal Forwarder on my source and how will that impact licensing?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Can-I-parse-data-at-the-indexer-since-I-am-using-a-Universal/m-p/161744#M32811</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;You can do it exactly as you mentioned. The props.conf and transforms.conf will be used on the indexer when "cooking" the data. So it's not to late to delete some data there before indexing. License meter is used after cooking the data. In this scenario a UF on the DC will be enough.&lt;/P&gt;

&lt;P&gt;you will just need to define your the same sourcetype in inputs.conf on the UF as as you do in props.conf on the indexer. make sure all your props.conf are the same on all indexers. &lt;/P&gt;

&lt;P&gt;Regards,&lt;/P&gt;

&lt;P&gt;Andreas&lt;/P&gt;</description>
      <pubDate>Wed, 22 Apr 2015 07:39:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Can-I-parse-data-at-the-indexer-since-I-am-using-a-Universal/m-p/161744#M32811</guid>
      <dc:creator>schose</dc:creator>
      <dc:date>2015-04-22T07:39:10Z</dc:date>
    </item>
    <item>
      <title>Re: Can I parse data at the indexer since I am using a Universal Forwarder on my source and how will that impact licensing?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Can-I-parse-data-at-the-indexer-since-I-am-using-a-Universal/m-p/161745#M32812</link>
      <description>&lt;P&gt;To add to @schose's answer, your idea as posted is basically correct. However, since you are replacing &lt;CODE&gt;_raw&lt;/CODE&gt;, you need to have a regex capture group for the content &lt;STRONG&gt;after&lt;/STRONG&gt; the string you want to filter out, and include that in your format string, something like:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; [ShortenSecMsg]
 REGEX=^(.*)This event is generated(.*)$
 DEST_KEY=_raw
 FORMAT=$1$2
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 22 Apr 2015 12:13:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Can-I-parse-data-at-the-indexer-since-I-am-using-a-Universal/m-p/161745#M32812</guid>
      <dc:creator>aweitzman</dc:creator>
      <dc:date>2015-04-22T12:13:12Z</dc:date>
    </item>
    <item>
      <title>Re: Can I parse data at the indexer since I am using a Universal Forwarder on my source and how will that impact licensing?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Can-I-parse-data-at-the-indexer-since-I-am-using-a-Universal/m-p/161746#M32813</link>
      <description>&lt;P&gt;Replacing &lt;CODE&gt;_raw&lt;/CODE&gt; isn't necessary, you can tell the UF to not even include that data.&lt;/P&gt;</description>
      <pubDate>Wed, 22 Apr 2015 12:35:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Can-I-parse-data-at-the-indexer-since-I-am-using-a-Universal/m-p/161746#M32813</guid>
      <dc:creator>martin_mueller</dc:creator>
      <dc:date>2015-04-22T12:35:10Z</dc:date>
    </item>
    <item>
      <title>Re: Can I parse data at the indexer since I am using a Universal Forwarder on my source and how will that impact licensing?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Can-I-parse-data-at-the-indexer-since-I-am-using-a-Universal/m-p/161747#M32814</link>
      <description>&lt;P&gt;Thank you all.  I was able to filter out the unwanted static text with those changes to the Props.conf and Transforms.conf on the Indexer since I am using a UF on my DCs.&lt;/P&gt;</description>
      <pubDate>Fri, 24 Apr 2015 18:56:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Can-I-parse-data-at-the-indexer-since-I-am-using-a-Universal/m-p/161747#M32814</guid>
      <dc:creator>Magnus_001</dc:creator>
      <dc:date>2015-04-24T18:56:55Z</dc:date>
    </item>
    <item>
      <title>Re: Can I parse data at the indexer since I am using a Universal Forwarder on my source and how will that impact licensing?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Can-I-parse-data-at-the-indexer-since-I-am-using-a-Universal/m-p/161748#M32815</link>
      <description>&lt;P&gt;Did you try modifying &lt;CODE&gt;inputs.conf&lt;/CODE&gt; on the UF to not include the text in the first place?&lt;/P&gt;</description>
      <pubDate>Fri, 24 Apr 2015 23:02:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Can-I-parse-data-at-the-indexer-since-I-am-using-a-Universal/m-p/161748#M32815</guid>
      <dc:creator>martin_mueller</dc:creator>
      <dc:date>2015-04-24T23:02:58Z</dc:date>
    </item>
    <item>
      <title>Re: Can I parse data at the indexer since I am using a Universal Forwarder on my source and how will that impact licensing?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Can-I-parse-data-at-the-indexer-since-I-am-using-a-Universal/m-p/161749#M32816</link>
      <description>&lt;P&gt;Hi, the suppress_text = 1 works but it also removes many interesting fields we need (Account_Nmae, Account_domain, Logon_type, etc.).&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 19:40:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Can-I-parse-data-at-the-indexer-since-I-am-using-a-Universal/m-p/161749#M32816</guid>
      <dc:creator>Magnus_001</dc:creator>
      <dc:date>2020-09-28T19:40:56Z</dc:date>
    </item>
    <item>
      <title>Re: Can I parse data at the indexer since I am using a Universal Forwarder on my source and how will that impact licensing?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Can-I-parse-data-at-the-indexer-since-I-am-using-a-Universal/m-p/161750#M32817</link>
      <description>&lt;P&gt;I see. Based on the docs I'd have expected something different, will ask for docs clarification &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 25 Apr 2015 23:30:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Can-I-parse-data-at-the-indexer-since-I-am-using-a-Universal/m-p/161750#M32817</guid>
      <dc:creator>martin_mueller</dc:creator>
      <dc:date>2015-04-25T23:30:35Z</dc:date>
    </item>
  </channel>
</rss>

