<?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 . in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/unreadable-title/m-p/699080#M115849</link>
    <description>&lt;P&gt;&lt;BR /&gt;.&lt;/P&gt;</description>
    <pubDate>Tue, 17 Sep 2024 21:01:56 GMT</pubDate>
    <dc:creator>Ash1</dc:creator>
    <dc:date>2024-09-17T21:01:56Z</dc:date>
    <item>
      <title>.</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/unreadable-title/m-p/699080#M115849</link>
      <description>&lt;P&gt;&lt;BR /&gt;.&lt;/P&gt;</description>
      <pubDate>Tue, 17 Sep 2024 21:01:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/unreadable-title/m-p/699080#M115849</guid>
      <dc:creator>Ash1</dc:creator>
      <dc:date>2024-09-17T21:01:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to Reroute index in transforms.conf</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/unreadable-title/m-p/699081#M115850</link>
      <description>&lt;P&gt;Firstly, what do you mean by move? Secondly, why don't you just send the data to the right index in the first place?&lt;/P&gt;</description>
      <pubDate>Sat, 14 Sep 2024 19:27:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/unreadable-title/m-p/699081#M115850</guid>
      <dc:creator>PickleRick</dc:creator>
      <dc:date>2024-09-14T19:27:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to Reroute index in transforms.conf</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/unreadable-title/m-p/699082#M115851</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/231884"&gt;@PickleRick&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Firstly, what do you mean by move? —&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;We want the logs to be in both EM and EP Splunk.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Secondly, why don't you just send the data to the right index in the first place? — We don’t want to create 4 indexes we want to reroute to 1 index only&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 14 Sep 2024 19:31:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/unreadable-title/m-p/699082#M115851</guid>
      <dc:creator>Ram2</dc:creator>
      <dc:date>2024-09-14T19:31:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to Reroute index in transforms.conf</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/unreadable-title/m-p/699083#M115852</link>
      <description>&lt;P&gt;Ah, so you don't want to move events but copy them. You can't easily do that.&lt;/P&gt;&lt;P&gt;You could duplicate events using CLONE_SOURCETYPE but thst works per sourcetype, not destination index.&lt;/P&gt;&lt;P&gt;So depending on your use case you could either try to duplicate events before ingeting them to Splunk or batch-copy them using the &lt;EM&gt;collect&lt;/EM&gt; command with a scheduled search post-indexing.&lt;/P&gt;&lt;P&gt;You are aware that those events will consume your license twice?&lt;/P&gt;</description>
      <pubDate>Sat, 14 Sep 2024 20:37:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/unreadable-title/m-p/699083#M115852</guid>
      <dc:creator>PickleRick</dc:creator>
      <dc:date>2024-09-14T20:37:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to Reroute index in transforms.conf</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/unreadable-title/m-p/699096#M115853</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/250479"&gt;@Ash1&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;as also&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/231884"&gt;@PickleRick&lt;/a&gt;&amp;nbsp;said, copying logs from one index in another one you pay twice your license (if you want to maintain the same sourcetype), is this acceptable for you?&lt;/P&gt;&lt;P&gt;Why do you want to do this?&lt;/P&gt;&lt;P&gt;if the reason is the access grants you could use 4 indexes for EP data and one for both EP and EM data, in this way you don't need to duplicate them.&lt;/P&gt;&lt;P&gt;Anyway, there is one way to copy logs from an index to another and it isn't relevant if they come from 4 indexes and must be copied in one:&lt;/P&gt;&lt;P&gt;1)&lt;/P&gt;&lt;P&gt;schedule a search and add at the end the collect command, something like this:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index IN (app-ep-index1, app-ep-index2, app-ep-index3, app-ep-index4) &amp;lt;condition_of_the_log_to_be_copied&amp;gt;
| collect index=app-em-index sourcetype=ypur_sourcetype)&lt;/LI-CODE&gt;&lt;P&gt;this solution has three limits:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;you pay twice the license,&lt;/LI&gt;&lt;LI&gt;there's a delay in the data availability in the&amp;nbsp;&lt;SPAN&gt;app-em-index,&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;yu have to schedule one search for each sourcetype you want to copy.&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;My hint is to send common logs to one index and give grants to both the groups to this index.&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Sun, 15 Sep 2024 05:43:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/unreadable-title/m-p/699096#M115853</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2024-09-15T05:43:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to Reroute index in transforms.conf</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/unreadable-title/m-p/699108#M115854</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt;You don't have to do it separately for each sourcetype. If you use output_format=hec with collect you can either retain the original sourcetype or modify it dynamically.&lt;/P&gt;&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/250479"&gt;@Ash1&lt;/a&gt;giving shared access to those 4 indexes would probably the way to go. If you don't wajt your users to have to type in all four indexes names, just define a macro or eventtype.&lt;/P&gt;</description>
      <pubDate>Sun, 15 Sep 2024 11:34:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/unreadable-title/m-p/699108#M115854</guid>
      <dc:creator>PickleRick</dc:creator>
      <dc:date>2024-09-15T11:34:30Z</dc:date>
    </item>
  </channel>
</rss>

