<?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 Replicate a subset of data to a third-party system for specific index in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/Replicate-a-subset-of-data-to-a-third-party-system-for-specific/m-p/441206#M95461</link>
    <description>&lt;P&gt;Hi team &lt;/P&gt;

&lt;P&gt;i need to foward a copy data from specific index to third-party system, someone knows how i can do that&lt;/P&gt;

&lt;P&gt;regards&lt;/P&gt;</description>
    <pubDate>Thu, 14 Mar 2019 23:00:23 GMT</pubDate>
    <dc:creator>evinasco</dc:creator>
    <dc:date>2019-03-14T23:00:23Z</dc:date>
    <item>
      <title>Replicate a subset of data to a third-party system for specific index</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Replicate-a-subset-of-data-to-a-third-party-system-for-specific/m-p/441206#M95461</link>
      <description>&lt;P&gt;Hi team &lt;/P&gt;

&lt;P&gt;i need to foward a copy data from specific index to third-party system, someone knows how i can do that&lt;/P&gt;

&lt;P&gt;regards&lt;/P&gt;</description>
      <pubDate>Thu, 14 Mar 2019 23:00:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Replicate-a-subset-of-data-to-a-third-party-system-for-specific/m-p/441206#M95461</guid>
      <dc:creator>evinasco</dc:creator>
      <dc:date>2019-03-14T23:00:23Z</dc:date>
    </item>
    <item>
      <title>Re: Replicate a subset of data to a third-party system for specific index</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Replicate-a-subset-of-data-to-a-third-party-system-for-specific/m-p/441207#M95462</link>
      <description>&lt;P&gt;Hi evinasco,&lt;/P&gt;

&lt;P&gt;Have a look at the docs here &lt;A href="https://docs.splunk.com/Documentation/Splunk/latest/Forwarding/Routeandfilterdatad#Replicate_a_subset_of_data_to_a_third-party_system"&gt;https://docs.splunk.com/Documentation/Splunk/latest/Forwarding/Routeandfilterdatad#Replicate_a_subset_of_data_to_a_third-party_system&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;Please note, that this setting is only configurable based on &lt;CODE&gt;host&lt;/CODE&gt;, &lt;CODE&gt;source&lt;/CODE&gt; or &lt;CODE&gt;sourcetype&lt;/CODE&gt; but NOT on index.&lt;/P&gt;

&lt;P&gt;Hope this helps ...&lt;/P&gt;

&lt;P&gt;cheers, MuS&lt;/P&gt;</description>
      <pubDate>Thu, 14 Mar 2019 23:52:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Replicate-a-subset-of-data-to-a-third-party-system-for-specific/m-p/441207#M95462</guid>
      <dc:creator>MuS</dc:creator>
      <dc:date>2019-03-14T23:52:36Z</dc:date>
    </item>
    <item>
      <title>Re: Replicate a subset of data to a third-party system for specific index</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Replicate-a-subset-of-data-to-a-third-party-system-for-specific/m-p/441208#M95463</link>
      <description>&lt;P&gt;Hi @MuS, Do you know if this configuration shall do in the transforms.conf?&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[routeAll]
REGEX=(.)
DEST_KEY=_TCP_ROUTING
FORMAT=Everything

[routeSubset]
REGEX=(sourcetype1|sourcetype2|sourcetype3)
DEST_KEY=_TCP_ROUTING
FORMAT=Subsidiary,Everything
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;regadrs&lt;/P&gt;</description>
      <pubDate>Fri, 15 Mar 2019 18:20:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Replicate-a-subset-of-data-to-a-third-party-system-for-specific/m-p/441208#M95463</guid>
      <dc:creator>evinasco</dc:creator>
      <dc:date>2019-03-15T18:20:10Z</dc:date>
    </item>
    <item>
      <title>Re: Replicate a subset of data to a third-party system for specific index</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Replicate-a-subset-of-data-to-a-third-party-system-for-specific/m-p/441209#M95464</link>
      <description>&lt;P&gt;Actually something like this would make more sense:&lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;props.conf&lt;/CODE&gt;&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[sourcetype1]
TRANSFORMS-001-Send-Subsidiary-sourcetype1 = Send-Subsidiary-sourcetype

[sourcetype2]
TRANSFORMS-002-Send-Subsidiary-sourcetype2 = Send-Subsidiary-sourcetype

[sourcetype1]
TRANSFORMS-003-Send-Subsidiary-sourcetype3 = Send-Subsidiary-sourcetype
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;&lt;CODE&gt;transforms.conf&lt;/CODE&gt;&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[Send-Subsidiary-sourcetype]
DEST_KEY = _TCP_ROUTING
FORMAT = Subsidiary, Everything
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;The reason for that is if you send everything by default to one destination, there is no need to configure a transforms stanza for this and add additional parsing load for these events &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;Hope that makes sense ...&lt;/P&gt;

&lt;P&gt;cheers, MuS&lt;/P&gt;</description>
      <pubDate>Sun, 17 Mar 2019 19:41:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Replicate-a-subset-of-data-to-a-third-party-system-for-specific/m-p/441209#M95464</guid>
      <dc:creator>MuS</dc:creator>
      <dc:date>2019-03-17T19:41:12Z</dc:date>
    </item>
  </channel>
</rss>

