<?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: Where do I configure my various Splunk settings? in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/Where-do-I-configure-my-various-Splunk-settings/m-p/218304#M42913</link>
    <description>&lt;P&gt;It is all documented here: &lt;A href="http://docs.splunk.com/Documentation/Splunk/6.2.5/Admin/Configurationparametersandthedatapipeline"&gt;http://docs.splunk.com/Documentation/Splunk/6.2.5/Admin/Configurationparametersandthedatapipeline&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 09 Sep 2015 23:42:05 GMT</pubDate>
    <dc:creator>Steve_G_</dc:creator>
    <dc:date>2015-09-09T23:42:05Z</dc:date>
    <item>
      <title>Where do I configure my various Splunk settings?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Where-do-I-configure-my-various-Splunk-settings/m-p/218302#M42911</link>
      <description>&lt;P&gt;I can never remember where I need to configure my various Splunk settings. Some need to be on the forwarder side, some on the indexers and I even sometimes need them on the search head...&lt;/P&gt;

&lt;P&gt;So where do they &lt;STRONG&gt;really&lt;/STRONG&gt; need to be?&lt;/P&gt;</description>
      <pubDate>Wed, 09 Sep 2015 23:37:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Where-do-I-configure-my-various-Splunk-settings/m-p/218302#M42911</guid>
      <dc:creator>s2_splunk</dc:creator>
      <dc:date>2015-09-09T23:37:51Z</dc:date>
    </item>
    <item>
      <title>Re: Where do I configure my various Splunk settings?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Where-do-I-configure-my-various-Splunk-settings/m-p/218303#M42912</link>
      <description>&lt;P&gt;In many environments there are a lot of different Splunk servers performing different roles. For example:&lt;/P&gt;

&lt;UL&gt;
&lt;LI&gt;Forwarders&lt;BR /&gt;&lt;/LI&gt;
&lt;LI&gt;Indexers&lt;/LI&gt;
&lt;LI&gt;Search Heads&lt;/LI&gt;
&lt;LI&gt;Summarizers&lt;/LI&gt;
&lt;/UL&gt;

&lt;P&gt;When we want Splunk to do something, we can find out which configuration file, what settings, and what values to set in the Administration Manual. However it is not always clear which server the settings need to be on, especially for indexing data, and especially with the &lt;STRONG&gt;props.conf&lt;/STRONG&gt; and &lt;STRONG&gt;transforms.conf&lt;/STRONG&gt; file settings. &lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;Phases of the Splunk data life cycle&lt;/STRONG&gt;&lt;BR /&gt;
To understand this, we first have to understand the different stages of the data life cycle in Splunk. These main phases for the purposes of understanding configuration are:&lt;BR /&gt;
This topic is also in the docs &lt;A href="http://docs.splunk.com/Documentation/Splunk/latest/Admin/Configurationparametersandthedatapipeline" target="_blank"&gt;here&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;&lt;EM&gt;Input&lt;/EM&gt;&lt;BR /&gt;
The '''Input''' phase acquires the raw data stream from its source and annotates it with source-wide ''keys''. The ''keys'' are values that apply to the entire input source overall, and includes the host, source, and sourcetype of the data. The keys may also include values that are used internally by Splunk such as the character encoding of the data stream, and values that can control later processing of the data, such as the index into which the events should be stored.&lt;/P&gt;

&lt;P&gt;During this phase, Splunk does not look at the contents of the data stream, so key fields must apply to the entire source, and not to individual events. In fact, at this point, Splunk has no notion of individual events at all, only a stream of data with certain global properties.&lt;/P&gt;

&lt;P&gt;&lt;EM&gt;Structured Data parsing&lt;/EM&gt;&lt;BR /&gt;
Since splunk 6, some source can be parsed for structured data (like headers, or json) and be populated at the forwarder level.&lt;BR /&gt;
see &lt;A href="http://docs.splunk.com/Documentation/Splunk/6.1.2/Data/Extractfieldsfromfileheadersatindextime#Forwa" target="_blank"&gt;the docs here&lt;/A&gt;&lt;BR /&gt;
Those settings have to be on the forwarders (and indexers if they monitor files)&lt;/P&gt;

&lt;P&gt;&lt;EM&gt;Parsing&lt;/EM&gt;&lt;BR /&gt;
The '''Parsing''' phases looks at, analyzes, and transforms the data. The parsing phase has many sub-phases:&lt;BR /&gt;
 - Breaking the stream of data into individual lines&lt;BR /&gt;
 - Identifying, parsing, and setting time stamps&lt;BR /&gt;
 - Annotating individual events with metadata copied from the source-wide source, host, sourcetype, and other keys&lt;BR /&gt;
 - Transforming event data and metadata according to Splunk regex transform rules &lt;/P&gt;

&lt;P&gt;&lt;EM&gt;Indexing&lt;/EM&gt;&lt;BR /&gt;
The '''Indexing''' phase takes the events as annotated with metadata and after transformations and writes it into the search index.&lt;/P&gt;

&lt;P&gt;&lt;EM&gt;Search&lt;/EM&gt;&lt;BR /&gt;
Search is probably easier to understand and distinguish from the other phases, but configuration for search is similar to and often combined with that for input and parsing.&lt;/P&gt;

&lt;P&gt;&lt;EM&gt;Other phases&lt;/EM&gt;&lt;BR /&gt;
A couple of other phases and sub-phases:&lt;BR /&gt;
 - Routing&lt;BR /&gt;
 - Jobs&lt;BR /&gt;
 - Expiration&lt;BR /&gt;
also govern the data life cycle, but for the sake of simplification will not be discussed in this article.&lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;Which Splunk servers go with which phases&lt;/STRONG&gt;&lt;BR /&gt;
Here are how some common Splunk server configurations correspond to these phases:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;Universal/Light Forwarder -&amp;gt; Indexer
Input                     -&amp;gt; Parsing, Indexing, Search
================================================================================================
Heavy Forwarder           -&amp;gt; Indexer
Input, Parsing            -&amp;gt; Indexing, Search
================================================================================================
Universal Forwarder       -&amp;gt; Indexer               -&amp;gt; Search Head
Input                     -&amp;gt; Parsing, Indexing     -&amp;gt; Search
================================================================================================
Universal Forwarder       -&amp;gt; Heavy Forwarder       -&amp;gt; Indexer
Input                     -&amp;gt; Parsing               -&amp;gt; Indexing, Search
================================================================================================
Universal Forwarder       -&amp;gt; Heavy Forwarder       -&amp;gt; Indexer           -&amp;gt; Search Head
Input                     -&amp;gt; Parsing               -&amp;gt; Indexing          -&amp;gt; Search
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;&lt;STRONG&gt;Which configuration parameters go with which phases&lt;/STRONG&gt;&lt;BR /&gt;
This is a non-exhaustive list of which configuration parameters go with which phase. By combining this information with an understanding of which server a phase occurs on, you can determine which server particular settings need to be made on.&lt;/P&gt;

&lt;H4&gt;Input&lt;/H4&gt;

&lt;UL&gt;
&lt;LI&gt;inputs.conf&lt;/LI&gt;
&lt;LI&gt;props.conf
&lt;STRONG&gt;sourcetype&lt;/STRONG&gt;
&lt;STRONG&gt;CHARSET&lt;/STRONG&gt;
&lt;STRONG&gt;NO_BINARY_CHECK&lt;/STRONG&gt;
&lt;STRONG&gt;detect_trailing_nulls&lt;/STRONG&gt;
&lt;STRONG&gt;CHECK_METHOD&lt;/STRONG&gt;
&lt;STRONG&gt;CHECK_FOR_HEADER&lt;/STRONG&gt;
&lt;STRONG&gt;FIELD_NAMES&lt;/STRONG&gt;
&lt;STRONG&gt;PREFIX_SOURCETYPE&lt;/STRONG&gt;
&lt;STRONG&gt;INDEXED_EXTRACTIONS, also called Structured Data Header Extraction (version 6+) &lt;A href="http://blogs.splunk.com/2013/10/18/iis-logs-and-splunk-6/" target="_blank"&gt;See this Blog article&lt;/A&gt; **
**LEARN_SOURCETYPE, LEARN_MODEL&lt;/STRONG&gt;&lt;/LI&gt;
&lt;LI&gt;wmi.conf&lt;/LI&gt;
&lt;LI&gt;regmon-filters.conf&lt;/LI&gt;
&lt;/UL&gt;

&lt;H4&gt;Parsing&lt;/H4&gt;

&lt;UL&gt;
&lt;LI&gt;props.conf
** TRUNCATE, LINE_BREAKER, SHOULD_LINEMERGE, BREAK_ONLY_BEFORE_DATE, and all other line merging settings**
** TZ, DATETIME_CONFIG, TIME_FORMAT, TIME_PREFIX, and all other time extraction settings and rules**
** TRANSFORMS* which includes per-event queue filtering, per-event index assignment, per-event routing.  Applied in the order defined**
** SEDCMD* **
** MORE_THAN*, LESS_THAN* **&lt;/LI&gt;
&lt;LI&gt;transforms.conf
** stanzas referenced by a TRANSFORMS* clause in props.conf **
** LOOKAHEAD, DEST_KEY, WRITE_META, DEFAULT_VALUE, REPEAT_MATCH **&lt;/LI&gt;
&lt;LI&gt;datetime.xml&lt;/LI&gt;
&lt;/UL&gt;

&lt;H4&gt;Indexing&lt;/H4&gt;

&lt;UL&gt;
&lt;LI&gt;props.conf
** SEGMENTATION* **&lt;/LI&gt;
&lt;LI&gt;indexes.conf&lt;/LI&gt;
&lt;LI&gt;segmenters.conf&lt;/LI&gt;
&lt;LI&gt;multikv.conf&lt;/LI&gt;
&lt;/UL&gt;

&lt;H4&gt;Search&lt;/H4&gt;

&lt;UL&gt;
&lt;LI&gt;&lt;P&gt;props.conf (note that this is the order in which these occur)&lt;BR /&gt;
** rename **&lt;BR /&gt;
** EXTRACT* **&lt;BR /&gt;
** REPORT* **&lt;BR /&gt;
** KV_MODE **&lt;BR /&gt;
** FIELDALIAS* **&lt;BR /&gt;
** EVAL* (version 5+) **&lt;BR /&gt;
** LOOKUP* **&lt;/P&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;P&gt;transforms.conf&lt;BR /&gt;
** stanzas referenced by a REPORT* clause in props.conf **&lt;BR /&gt;
** filename, external_cmd, and all other lookup-related settings **&lt;BR /&gt;
** FIELDS, DELIMS **&lt;BR /&gt;
** MV_ADD **&lt;/P&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;P&gt;lookup files in the lookups folders&lt;/P&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;P&gt;search and lookup scripts in the bin folders&lt;/P&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;P&gt;search commands and lookup scripts&lt;/P&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;P&gt;savedsearches.conf&lt;/P&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;P&gt;eventtypes.conf&lt;/P&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;P&gt;tags.conf&lt;/P&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;P&gt;commands.conf&lt;/P&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;P&gt;alert_actions.conf&lt;/P&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;P&gt;macros.conf&lt;/P&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;P&gt;fields.conf&lt;/P&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;P&gt;transactiontypes.conf&lt;/P&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;P&gt;multikv.conf&lt;/P&gt;&lt;/LI&gt;
&lt;/UL&gt;

&lt;H4&gt;Other&lt;/H4&gt;&lt;H4&gt;
There are some settings that don't work well in a distributed Splunk environment. These tend to be exceptional and include:
- props.conf
** CHECK_FOR_HEADER, LEARN_MODEL, maxDist. ** These are created in the parsing phase, but they require generated configurations to be moved to the search phase configuration location.

Note that, starting with V6.1, props.conf might have to go on the UFs.  From dev:  With 6.1, the structured data props.conf are happening at monitoring time therefore the props.conf has also to be on the forwarders.

** For most up to date information, please always consult the Splunk documentation at [our website][4]. **






&lt;/H4&gt;</description>
      <pubDate>Tue, 29 Sep 2020 07:14:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Where-do-I-configure-my-various-Splunk-settings/m-p/218303#M42912</guid>
      <dc:creator>s2_splunk</dc:creator>
      <dc:date>2020-09-29T07:14:25Z</dc:date>
    </item>
    <item>
      <title>Re: Where do I configure my various Splunk settings?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Where-do-I-configure-my-various-Splunk-settings/m-p/218304#M42913</link>
      <description>&lt;P&gt;It is all documented here: &lt;A href="http://docs.splunk.com/Documentation/Splunk/6.2.5/Admin/Configurationparametersandthedatapipeline"&gt;http://docs.splunk.com/Documentation/Splunk/6.2.5/Admin/Configurationparametersandthedatapipeline&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Sep 2015 23:42:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Where-do-I-configure-my-various-Splunk-settings/m-p/218304#M42913</guid>
      <dc:creator>Steve_G_</dc:creator>
      <dc:date>2015-09-09T23:42:05Z</dc:date>
    </item>
    <item>
      <title>Re: Where do I configure my various Splunk settings?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Where-do-I-configure-my-various-Splunk-settings/m-p/218305#M42914</link>
      <description>&lt;P&gt;Hi sievert [Splunk],&lt;/P&gt;

&lt;P&gt;IMHO the best source is this wiki article &lt;A href="http://wiki.splunk.com/Where_do_I_configure_my_Splunk_settings%3F"&gt;http://wiki.splunk.com/Where_do_I_configure_my_Splunk_settings%3F&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;cheers, MuS&lt;/P&gt;</description>
      <pubDate>Wed, 09 Sep 2015 23:42:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Where-do-I-configure-my-various-Splunk-settings/m-p/218305#M42914</guid>
      <dc:creator>MuS</dc:creator>
      <dc:date>2015-09-09T23:42:35Z</dc:date>
    </item>
    <item>
      <title>Re: Where do I configure my various Splunk settings?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Where-do-I-configure-my-various-Splunk-settings/m-p/218306#M42915</link>
      <description>&lt;P&gt;That's nice as well &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Sep 2015 23:43:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Where-do-I-configure-my-various-Splunk-settings/m-p/218306#M42915</guid>
      <dc:creator>MuS</dc:creator>
      <dc:date>2015-09-09T23:43:27Z</dc:date>
    </item>
    <item>
      <title>Re: Where do I configure my various Splunk settings?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Where-do-I-configure-my-various-Splunk-settings/m-p/218307#M42916</link>
      <description>&lt;P&gt;Hi MuS,&lt;BR /&gt;
that's what happens when your question shows up before the answer you are giving at the same time. The goal of this was to drive customers towards answers.splunk.com or docs.splunk.com vs. the Wiki, which may not contain current, up to date information. &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;BR /&gt;
docs and answers are here to stay!&lt;/P&gt;</description>
      <pubDate>Thu, 10 Sep 2015 02:32:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Where-do-I-configure-my-various-Splunk-settings/m-p/218307#M42916</guid>
      <dc:creator>s2_splunk</dc:creator>
      <dc:date>2015-09-10T02:32:59Z</dc:date>
    </item>
    <item>
      <title>Re: Where do I configure my various Splunk settings?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Where-do-I-configure-my-various-Splunk-settings/m-p/218308#M42917</link>
      <description>&lt;P&gt;@Piebob told me the same &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt; Your answer was stuck in the moderation queue.&lt;BR /&gt;
Should I remove my post?&lt;/P&gt;</description>
      <pubDate>Thu, 10 Sep 2015 02:39:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Where-do-I-configure-my-various-Splunk-settings/m-p/218308#M42917</guid>
      <dc:creator>MuS</dc:creator>
      <dc:date>2015-09-10T02:39:12Z</dc:date>
    </item>
    <item>
      <title>Re: Where do I configure my various Splunk settings?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Where-do-I-configure-my-various-Splunk-settings/m-p/218309#M42918</link>
      <description>&lt;P&gt;Nah, it's a valid comment. Let's not mess with history... &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Sep 2015 02:45:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Where-do-I-configure-my-various-Splunk-settings/m-p/218309#M42918</guid>
      <dc:creator>s2_splunk</dc:creator>
      <dc:date>2015-09-10T02:45:12Z</dc:date>
    </item>
    <item>
      <title>Re: Where do I configure my various Splunk settings?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Where-do-I-configure-my-various-Splunk-settings/m-p/603114#M104963</link>
      <description>&lt;P&gt;Why has this page been removed?&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jun 2022 06:41:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Where-do-I-configure-my-various-Splunk-settings/m-p/603114#M104963</guid>
      <dc:creator>dvb</dc:creator>
      <dc:date>2022-06-24T06:41:54Z</dc:date>
    </item>
    <item>
      <title>Re: Where do I configure my various Splunk settings?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Where-do-I-configure-my-various-Splunk-settings/m-p/616076#M106459</link>
      <description>&lt;P&gt;wiki.splunk.com was removed. too much old info, no one managing it. you can still grab the old page from wayback: &lt;A href="https://web.archive.org/web/20201202100505/https://wiki.splunk.com/Where_do_I_configure_my_Splunk_settings%3F" target="_blank"&gt;https://web.archive.org/web/20201202100505/https://wiki.splunk.com/Where_do_I_configure_my_Splunk_settings%3F&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Oct 2022 01:47:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Where-do-I-configure-my-various-Splunk-settings/m-p/616076#M106459</guid>
      <dc:creator>ruman_splunk</dc:creator>
      <dc:date>2022-10-06T01:47:01Z</dc:date>
    </item>
    <item>
      <title>Re: Where do I configure my various Splunk settings?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Where-do-I-configure-my-various-Splunk-settings/m-p/645440#M109828</link>
      <description>&lt;P&gt;Updated link:&lt;/P&gt;&lt;P&gt;&lt;A href="https://docs.splunk.com/Documentation/Splunk/latest/Admin/Configurationparametersandthedatapipeline" target="_blank"&gt;https://docs.splunk.com/Documentation/Splunk/latest/Admin/Configurationparametersandthedatapipeline&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Jun 2023 20:29:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Where-do-I-configure-my-various-Splunk-settings/m-p/645440#M109828</guid>
      <dc:creator>jotne</dc:creator>
      <dc:date>2023-06-01T20:29:08Z</dc:date>
    </item>
  </channel>
</rss>

