<?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: How to create and redirect event to the indexes? in Splunk Enterprise</title>
    <link>https://community.splunk.com/t5/Splunk-Enterprise/How-to-create-and-redirect-event-to-the-indexes/m-p/345409#M6882</link>
    <description>&lt;P&gt;Hi&lt;/P&gt;

&lt;P&gt;You need to go to the inputs.conf in each of the Splunk Apps (Windows, Linux and Firewall), and under each stanza such as WinEventLog://Application and put a index under it.&lt;/P&gt;

&lt;P&gt;[WinEventLog://Application]&lt;BR /&gt;
&lt;STRONG&gt;index=your_index&lt;/STRONG&gt;&lt;/P&gt;

&lt;P&gt;Do the same for all the other stanzas in the inputs.conf you are collecting.&lt;/P&gt;

&lt;P&gt;You also need to create the indexes you want. You can do it in the Splunk UI of the Indexer, under Settings, Indexes, New Index&lt;/P&gt;</description>
    <pubDate>Mon, 12 Mar 2018 08:18:28 GMT</pubDate>
    <dc:creator>tiagofbmm</dc:creator>
    <dc:date>2018-03-12T08:18:28Z</dc:date>
    <item>
      <title>How to create and redirect event to the indexes?</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/How-to-create-and-redirect-event-to-the-indexes/m-p/345408#M6881</link>
      <description>&lt;P&gt;I have created an splunk distributed setup which consist of a Search Head,indexer and two heavy forwarder.Right now am forwarding events from windows,Linux and firewall through syslog-ng to the indexer.But the events are store in main index.So I want to create and redirect to a separate index for windows,linux and syslog and also, is it possible to move the event stored in main index to the corresponding indexes.&lt;/P&gt;</description>
      <pubDate>Mon, 12 Mar 2018 08:13:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/How-to-create-and-redirect-event-to-the-indexes/m-p/345408#M6881</guid>
      <dc:creator>sathyajith_tekd</dc:creator>
      <dc:date>2018-03-12T08:13:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to create and redirect event to the indexes?</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/How-to-create-and-redirect-event-to-the-indexes/m-p/345409#M6882</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;

&lt;P&gt;You need to go to the inputs.conf in each of the Splunk Apps (Windows, Linux and Firewall), and under each stanza such as WinEventLog://Application and put a index under it.&lt;/P&gt;

&lt;P&gt;[WinEventLog://Application]&lt;BR /&gt;
&lt;STRONG&gt;index=your_index&lt;/STRONG&gt;&lt;/P&gt;

&lt;P&gt;Do the same for all the other stanzas in the inputs.conf you are collecting.&lt;/P&gt;

&lt;P&gt;You also need to create the indexes you want. You can do it in the Splunk UI of the Indexer, under Settings, Indexes, New Index&lt;/P&gt;</description>
      <pubDate>Mon, 12 Mar 2018 08:18:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/How-to-create-and-redirect-event-to-the-indexes/m-p/345409#M6882</guid>
      <dc:creator>tiagofbmm</dc:creator>
      <dc:date>2018-03-12T08:18:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to create and redirect event to the indexes?</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/How-to-create-and-redirect-event-to-the-indexes/m-p/345410#M6883</link>
      <description>&lt;P&gt;Right now I have about 65,000 of events in the main index (windows,Linux,syslog),Is it possible to move the events to the corresponding indexes.&lt;/P&gt;</description>
      <pubDate>Mon, 12 Mar 2018 08:29:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/How-to-create-and-redirect-event-to-the-indexes/m-p/345410#M6883</guid>
      <dc:creator>sathyajith_tekd</dc:creator>
      <dc:date>2018-03-12T08:29:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to create and redirect event to the indexes?</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/How-to-create-and-redirect-event-to-the-indexes/m-p/345411#M6884</link>
      <description>&lt;P&gt;Hey sathyajith_tekdeliver,&lt;BR /&gt;
Already indexed data cannot be added to new index. However you can re-index the data to the new index.&lt;/P&gt;

&lt;P&gt;For distributed environment.&lt;/P&gt;

&lt;P&gt;Create seperate index in indexes.conf in $SPLUNK_HOME$/etc/master-apps/_cluster/local&lt;BR /&gt;
 for all indexes you want&lt;BR /&gt;
Sample index format:&lt;/P&gt;

&lt;P&gt;[linux]&lt;/P&gt;

&lt;P&gt;homePath   = $SPLUNK_DB/linux/db&lt;BR /&gt;
coldPath   = $SPLUNK_DB/linux/colddb&lt;BR /&gt;
thawedPath = $SPLUNK_DB/linux/thaweddb&lt;/P&gt;

&lt;P&gt;From the master, Push the configuration bundle via GUI.&lt;BR /&gt;
Settings&amp;gt;Indexer Clustering&amp;gt;Distribute configuration Bundle.&lt;/P&gt;

&lt;P&gt;This will create indexes.&lt;/P&gt;

&lt;P&gt;In inputs.conf on the forwarder add index to which data has to be indexed.&lt;BR /&gt;
Sample:&lt;/P&gt;

&lt;P&gt;[monitor://]&lt;BR /&gt;
index = linux&lt;/P&gt;

&lt;P&gt;And restart splunk.&lt;/P&gt;

&lt;P&gt;If you are trying to re-index data then you need to add crc_salt in inputs.conf&lt;BR /&gt;
Refer this link:&lt;BR /&gt;
&lt;A href="http://docs.splunk.com/Documentation/Splunk/7.0.2/Indexer/Indexerclusterinputs" target="_blank"&gt;http://docs.splunk.com/Documentation/Splunk/7.0.2/Indexer/Indexerclusterinputs&lt;/A&gt;&lt;BR /&gt;
Let me know if this helps!!! &lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 18:27:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/How-to-create-and-redirect-event-to-the-indexes/m-p/345411#M6884</guid>
      <dc:creator>deepashri_123</dc:creator>
      <dc:date>2020-09-29T18:27:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to create and redirect event to the indexes?</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/How-to-create-and-redirect-event-to-the-indexes/m-p/345412#M6885</link>
      <description>&lt;P&gt;These events in the main index are in buckets mixed with others, which means you can't just move the buckets from one index to the other.&lt;/P&gt;

&lt;P&gt;As these are not [monitor:....] stanzas, but rather scripts running on the servers, you can't have the data "reingested" unfortunately. &lt;/P&gt;

&lt;P&gt;You can explore the &lt;STRONG&gt;collect&lt;/STRONG&gt; command to see if you can get something out of it, but the main point here is: if data is there, specially in a default index that in your case has many sources in there, there is no trivial way to do that I believe&lt;/P&gt;</description>
      <pubDate>Mon, 12 Mar 2018 08:34:48 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/How-to-create-and-redirect-event-to-the-indexes/m-p/345412#M6885</guid>
      <dc:creator>tiagofbmm</dc:creator>
      <dc:date>2018-03-12T08:34:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to create and redirect event to the indexes?</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/How-to-create-and-redirect-event-to-the-indexes/m-p/345413#M6886</link>
      <description>&lt;P&gt;Thank you so much&lt;/P&gt;</description>
      <pubDate>Mon, 12 Mar 2018 08:44:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/How-to-create-and-redirect-event-to-the-indexes/m-p/345413#M6886</guid>
      <dc:creator>sathyajith_tekd</dc:creator>
      <dc:date>2018-03-12T08:44:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to create and redirect event to the indexes?</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/How-to-create-and-redirect-event-to-the-indexes/m-p/345414#M6887</link>
      <description>&lt;P&gt;Can you accept my answer below? You just accepted your own&lt;/P&gt;</description>
      <pubDate>Mon, 12 Mar 2018 08:48:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/How-to-create-and-redirect-event-to-the-indexes/m-p/345414#M6887</guid>
      <dc:creator>tiagofbmm</dc:creator>
      <dc:date>2018-03-12T08:48:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to create and redirect event to the indexes?</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/How-to-create-and-redirect-event-to-the-indexes/m-p/345415#M6888</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;

&lt;P&gt;After adding the stanzas the events are indexed in a new index except some  events.&lt;BR /&gt;
Sources such as &lt;/P&gt;

&lt;P&gt;Perfmon:Network Interface&lt;BR /&gt;&lt;BR /&gt;
Perfmon:CPU Load&lt;BR /&gt;&lt;BR /&gt;
Perfmon: Available Memory&lt;BR /&gt;
is still indexed in default,So how to move these source to the new index&lt;/P&gt;</description>
      <pubDate>Fri, 23 Mar 2018 12:12:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/How-to-create-and-redirect-event-to-the-indexes/m-p/345415#M6888</guid>
      <dc:creator>sathyajith_tekd</dc:creator>
      <dc:date>2018-03-23T12:12:34Z</dc:date>
    </item>
  </channel>
</rss>

