<?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: props.conf in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/props-conf/m-p/426135#M95081</link>
    <description>&lt;P&gt;What have you tried so far and what problems are you running into? This is a platform for asking questions, not for asking other people to do your job for you &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 14 Jun 2019 13:34:52 GMT</pubDate>
    <dc:creator>FrankVl</dc:creator>
    <dc:date>2019-06-14T13:34:52Z</dc:date>
    <item>
      <title>props.conf</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/props-conf/m-p/426134#M95080</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;

&lt;P&gt;can anyone help us to figure out magic six for the below sample log?&lt;/P&gt;

&lt;P&gt;SHOULD_LINEMERGE=&lt;BR /&gt;
LINE_BREAKER=&lt;BR /&gt;
MAX_TIMESTAMP_LOOKAHEAD=&lt;BR /&gt;
TIME_PREFIX=&lt;BR /&gt;
TRUNCATE=&lt;BR /&gt;
TIME_FORMAT=&lt;/P&gt;

&lt;P&gt;VersionNumber=7.2 build 13. Maint HF-005,Priority=N/A,LocalTranNumber=I32790D942,RemoteTranNumber=N/A,TransferStartTime=003940,TransferStartDate=20190327,&lt;/P&gt;

&lt;P&gt;Thanks in Advance!&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 00:55:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/props-conf/m-p/426134#M95080</guid>
      <dc:creator>EHariharan</dc:creator>
      <dc:date>2020-09-30T00:55:59Z</dc:date>
    </item>
    <item>
      <title>Re: props.conf</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/props-conf/m-p/426135#M95081</link>
      <description>&lt;P&gt;What have you tried so far and what problems are you running into? This is a platform for asking questions, not for asking other people to do your job for you &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jun 2019 13:34:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/props-conf/m-p/426135#M95081</guid>
      <dc:creator>FrankVl</dc:creator>
      <dc:date>2019-06-14T13:34:52Z</dc:date>
    </item>
    <item>
      <title>Re: props.conf</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/props-conf/m-p/426136#M95082</link>
      <description>&lt;P&gt;The "magic six" are usually defined by you or whomever knows the data.  Essentially, you are telling Splunk where to break the events and how to identify the timestamps for indexing.  &lt;/P&gt;

&lt;P&gt;I suggest you do this;&lt;/P&gt;

&lt;UL&gt;
&lt;LI&gt;Identify what constitutes a new event.&lt;/LI&gt;
&lt;LI&gt;Identify what the timestamp for the event is in the event.&lt;/LI&gt;
&lt;/UL&gt;

&lt;P&gt;Just looking at that event, the TIME_FORMAT might look like this:&lt;BR /&gt;
&lt;CODE&gt;TIME_PREFIX = TransferStartTime=&lt;/CODE&gt;&lt;BR /&gt;
&lt;CODE&gt;TIME_FORMAT = %H%M%S,TransferStartDate=%Y%m%d&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;You may not HAVE to use everything form the Magic 6, but you should try to if you can.&lt;/P&gt;

&lt;P&gt;What I usually do is bring in sample data into a standalone instance (usually running on my laptop) and use the "Add Data" ability to bring in the data and test out props before I deploy them out.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 00:54:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/props-conf/m-p/426136#M95082</guid>
      <dc:creator>ragedsparrow</dc:creator>
      <dc:date>2020-09-30T00:54:59Z</dc:date>
    </item>
    <item>
      <title>Re: props.conf</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/props-conf/m-p/426137#M95083</link>
      <description>&lt;P&gt;I'd move &lt;CODE&gt;TransferStartTime=&lt;/CODE&gt; to the TIME_PREFIX setting, other than that I had the same suggestion in mind &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jun 2019 13:44:48 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/props-conf/m-p/426137#M95083</guid>
      <dc:creator>FrankVl</dc:creator>
      <dc:date>2019-06-14T13:44:48Z</dc:date>
    </item>
    <item>
      <title>Re: props.conf</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/props-conf/m-p/426138#M95084</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/157089"&gt;@EHariharan&lt;/a&gt; ,&lt;BR /&gt;
The answer provided by &lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/102823"&gt;@ragedsparrow&lt;/a&gt; is how you should approach data onboarding.  However, if you're the one tasked with owning the data, and you're just given some events you might try these values:&lt;BR /&gt;
&lt;PRE&gt;&lt;BR /&gt;
SHOULD_LINEMERGE = false&lt;BR /&gt;
LINE_BREAKER = ([\r\n]+)&lt;BR /&gt;
TIME_PREFIX = TransferStartTime=&lt;BR /&gt;
TIME_FORMAT = %H%M%S,TransferStartDate=%Y%m%d&lt;BR /&gt;
TRUNCATE = 10000&lt;BR /&gt;
MAX_TIMESTAMP_LOOKAHEAD = 40&lt;BR /&gt;
&lt;/PRE&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 00:56:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/props-conf/m-p/426138#M95084</guid>
      <dc:creator>jnudell_2</dc:creator>
      <dc:date>2020-09-30T00:56:06Z</dc:date>
    </item>
    <item>
      <title>Re: props.conf</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/props-conf/m-p/426139#M95085</link>
      <description>&lt;P&gt;Yeah, that is much better.  Modified my answer to reflect that.&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jun 2019 13:54:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/props-conf/m-p/426139#M95085</guid>
      <dc:creator>ragedsparrow</dc:creator>
      <dc:date>2019-06-14T13:54:53Z</dc:date>
    </item>
    <item>
      <title>Re: props.conf</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/props-conf/m-p/426140#M95086</link>
      <description>&lt;P&gt;Thanks, jnudell_2. It worked &lt;/P&gt;

&lt;P&gt;Also, I would like to thank  ragedsparrow and FrankVl .&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jun 2019 14:52:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/props-conf/m-p/426140#M95086</guid>
      <dc:creator>EHariharan</dc:creator>
      <dc:date>2019-06-14T14:52:26Z</dc:date>
    </item>
  </channel>
</rss>

