<?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: Heavy Forwarder configure to populate data to two separate indexes in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/Heavy-Forwarder-configure-to-populate-data-to-two-separate/m-p/89875#M18641</link>
    <description>&lt;P&gt;I should point out that we have a universal forwarder sending perfmon data to the heavy forwarder.  Could we not use indexing on the heavy forwarder to assign sourcetype to the data and than forward that data on to the indexers based on sourcetype since it does not seem to be defined in the raw data?  The reason we have a universal forwarder sending data to the heavy forwarder is so we can load balance the data between the two indexers.&lt;/P&gt;</description>
    <pubDate>Thu, 11 Jul 2013 13:46:56 GMT</pubDate>
    <dc:creator>mookiie2005</dc:creator>
    <dc:date>2013-07-11T13:46:56Z</dc:date>
    <item>
      <title>Heavy Forwarder configure to populate data to two separate indexes</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Heavy-Forwarder-configure-to-populate-data-to-two-separate/m-p/89867#M18633</link>
      <description>&lt;P&gt;We are running a heavy forwarder.  We want to send the perfmon data that it is currently receiving to two separate indexes.  the Perfmon:CPU Load to index perfmon_cpu_load, and the Perfmon: Available Memory to perfmon_memory.  How would we configure a heavy forwarder to do this?  Ity is currently sending the data into main on the indexer.  This forwarder does not have indexing currently enabled.&lt;/P&gt;

&lt;P&gt;This is our current props.conf stanza:&lt;BR /&gt;
[perfmon_cpu_load]&lt;BR /&gt;
TRANSFORMS-routing=perfmon_cpu_load&lt;/P&gt;

&lt;P&gt;[perfmon_memory]&lt;BR /&gt;
TRANSFORMS-routing=perfmon_memory&lt;/P&gt;

&lt;P&gt;This is our current transforms.conf stanzas:&lt;/P&gt;

&lt;P&gt;[perfmon_cpu_load]&lt;BR /&gt;
SOURCETYPE=Perfmon:CPU Load&lt;BR /&gt;
DEST_KEY=_MetaData:Index&lt;BR /&gt;
FORMAT=perfmon_cpu_load&lt;/P&gt;

&lt;P&gt;[perfmon_memory]&lt;BR /&gt;
SOURCETYPE=Perfmon:Avalible Memory&lt;BR /&gt;
DEST_KEY=_MetaData:Index&lt;BR /&gt;
FORMAT=perfmon_memory&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 14:17:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Heavy-Forwarder-configure-to-populate-data-to-two-separate/m-p/89867#M18633</guid>
      <dc:creator>mookiie2005</dc:creator>
      <dc:date>2020-09-28T14:17:23Z</dc:date>
    </item>
    <item>
      <title>Re: Heavy Forwarder configure to populate data to two separate indexes</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Heavy-Forwarder-configure-to-populate-data-to-two-separate/m-p/89868#M18634</link>
      <description>&lt;P&gt;Transforms.conf does not have a sourcetype key. Your stanza needs to look like this&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[perfmon_memory]
SOURCE_KEY = MetaData:Sourcetype
REGEX =Perfmon\:Available Memory
DEST_KEY=_MetaData:Index
FORMAT=perfmon_memory

[perfmon_cpu_load]
SOURCE_KEY = MetaData:Sourcetype
REGEX=Perfmon\:CPU Load
DEST_KEY=_MetaData:Index
FORMAT=perfmon_cpu_load
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;These settings are specified in &lt;CODE&gt;transforms.conf.spec&lt;/CODE&gt; which can be found in your Splunk installation under &lt;CODE&gt;$SPLUNK_HOME/etc/system/README&lt;/CODE&gt; or in the documentation on &lt;A href="http://docs.splunk.com/Documentation/Splunk/latest/Admin/Transformsconf"&gt;transforms.conf&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Jul 2013 19:50:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Heavy-Forwarder-configure-to-populate-data-to-two-separate/m-p/89868#M18634</guid>
      <dc:creator>lguinn2</dc:creator>
      <dc:date>2013-07-09T19:50:52Z</dc:date>
    </item>
    <item>
      <title>Re: Heavy Forwarder configure to populate data to two separate indexes</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Heavy-Forwarder-configure-to-populate-data-to-two-separate/m-p/89869#M18635</link>
      <description>&lt;P&gt;This does not seem to be working the data is still only appearing in the "main" index.  Anyone have any other ideas?&lt;/P&gt;</description>
      <pubDate>Tue, 09 Jul 2013 20:02:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Heavy-Forwarder-configure-to-populate-data-to-two-separate/m-p/89869#M18635</guid>
      <dc:creator>mookiie2005</dc:creator>
      <dc:date>2013-07-09T20:02:33Z</dc:date>
    </item>
    <item>
      <title>Re: Heavy Forwarder configure to populate data to two separate indexes</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Heavy-Forwarder-configure-to-populate-data-to-two-separate/m-p/89870#M18636</link>
      <description>&lt;P&gt;Does indexing need to be enabled on the forwarder for this to work correctly?&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jul 2013 12:45:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Heavy-Forwarder-configure-to-populate-data-to-two-separate/m-p/89870#M18636</guid>
      <dc:creator>mookiie2005</dc:creator>
      <dc:date>2013-07-10T12:45:26Z</dc:date>
    </item>
    <item>
      <title>Re: Heavy Forwarder configure to populate data to two separate indexes</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Heavy-Forwarder-configure-to-populate-data-to-two-separate/m-p/89871#M18637</link>
      <description>&lt;P&gt;You should not enable indexing on the forwarder - this will cause the data to be stored locally on the heavy forwarder, which you do not want.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jul 2013 17:30:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Heavy-Forwarder-configure-to-populate-data-to-two-separate/m-p/89871#M18637</guid>
      <dc:creator>lguinn2</dc:creator>
      <dc:date>2013-07-10T17:30:04Z</dc:date>
    </item>
    <item>
      <title>Re: Heavy Forwarder configure to populate data to two separate indexes</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Heavy-Forwarder-configure-to-populate-data-to-two-separate/m-p/89872#M18638</link>
      <description>&lt;P&gt;The question that comes to mind is "when and how is the sourcetype assigned for Windows event logs?" Perhaps the sourcetyping is not complete at the time these transforms are run. So perhaps we need to find a different SOURCE_KEY and REGEX -- or look into altering the order of evaluation of the transformations...&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jul 2013 18:44:39 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Heavy-Forwarder-configure-to-populate-data-to-two-separate/m-p/89872#M18638</guid>
      <dc:creator>lguinn2</dc:creator>
      <dc:date>2013-07-10T18:44:39Z</dc:date>
    </item>
    <item>
      <title>Re: Heavy Forwarder configure to populate data to two separate indexes</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Heavy-Forwarder-configure-to-populate-data-to-two-separate/m-p/89873#M18639</link>
      <description>&lt;P&gt;Is their anyway to see the raw data as it comes to the heavy forwarder?  You maybe right maybe these sourcetypes are being applied at/after the time of indexing.&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jul 2013 13:01:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Heavy-Forwarder-configure-to-populate-data-to-two-separate/m-p/89873#M18639</guid>
      <dc:creator>mookiie2005</dc:creator>
      <dc:date>2013-07-11T13:01:59Z</dc:date>
    </item>
    <item>
      <title>Re: Heavy Forwarder configure to populate data to two separate indexes</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Heavy-Forwarder-configure-to-populate-data-to-two-separate/m-p/89874#M18640</link>
      <description>&lt;P&gt;Ok I found the raw data:&lt;BR /&gt;
07/11/2013 08:35:59.720&lt;BR /&gt;
collection="CPU Load"&lt;BR /&gt;
object=Processor&lt;BR /&gt;
counter="% User Time"&lt;BR /&gt;
instance=_Total&lt;BR /&gt;
Value=0.46874700001919994&lt;BR /&gt;
should I use the key value pair [collection="CPU Load"]?&lt;BR /&gt;
something like this&lt;BR /&gt;
[perfmon_cpu_load]&lt;BR /&gt;
SOURCE_KEY = MetaData:collection&lt;BR /&gt;
REGEX=CPU Load&lt;BR /&gt;
DEST_KEY=_MetaData:Index&lt;BR /&gt;
FORMAT=perfmon_cpu_load&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 14:19:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Heavy-Forwarder-configure-to-populate-data-to-two-separate/m-p/89874#M18640</guid>
      <dc:creator>mookiie2005</dc:creator>
      <dc:date>2020-09-28T14:19:12Z</dc:date>
    </item>
    <item>
      <title>Re: Heavy Forwarder configure to populate data to two separate indexes</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Heavy-Forwarder-configure-to-populate-data-to-two-separate/m-p/89875#M18641</link>
      <description>&lt;P&gt;I should point out that we have a universal forwarder sending perfmon data to the heavy forwarder.  Could we not use indexing on the heavy forwarder to assign sourcetype to the data and than forward that data on to the indexers based on sourcetype since it does not seem to be defined in the raw data?  The reason we have a universal forwarder sending data to the heavy forwarder is so we can load balance the data between the two indexers.&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jul 2013 13:46:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Heavy-Forwarder-configure-to-populate-data-to-two-separate/m-p/89875#M18641</guid>
      <dc:creator>mookiie2005</dc:creator>
      <dc:date>2013-07-11T13:46:56Z</dc:date>
    </item>
  </channel>
</rss>

