<?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 How do I configure props.conf using my sample data for proper line breaking based on time? in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/How-do-I-configure-props-conf-using-my-sample-data-for-proper/m-p/265651#M50952</link>
    <description>&lt;P&gt;Sample log extract below:&lt;/P&gt;

&lt;P&gt;Splunk reads the log as one event and takes the pricing date: 2/3/2016 as the actual date and matched that to the time 12:00:01.093&lt;/P&gt;

&lt;P&gt;Please advise how do I go about generating a separate log event for the different events based on the time? Lines can range in between 1-257 lines depending on the log. &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;12:00:01.093 INFO  c.w.f.service.delegate.FOSJobManager - BatchId:147,LoopingType:BY_CUSTOMER,OrgId:126,PricingDate:02/03/2016,CurrentJob:DEEMED_ADJUSTMENT_JOB,LastJob:DEEMED_ADJUSTMENT_JOB,DataSource:jdbc/FOS,EmailFlag:N,SingleCustomerId:-1,SingleLocationId:-1,UserId:1234,RespId:56789,ApplnId:123
12:00:01.093 INFO  com.abc.fos.job.FOSJob - Entering run Method
12:00:01.327 INFO  com.abc.fos.job.FOSJob - DEEMED_ADJUSTMENT::Customer Count:815
12:00:01.369 INFO  com.abc.fos.job.FOSJob - Total work units created :815
12:00:01.373 INFO  com.abc.fos.job.FOSJob - Exiting run Method
12:01:31.228 INFO  com.abc.fos.work.FOSWork - Work Unit Completed:DEEMED_ADJUSTMENT: Customer Id:2272
12:01:31.228 INFO  com.abc.fos.work.FOSWork - Work Unit Completed:DEEMED_ADJUSTMENT: Customer Id:2094
12:01:31.579 INFO  com.abc.fos.work.FOSWork - Work Unit Completed:DEEMED_ADJUSTMENT: Customer Id:2454
12:01:31.645 INFO  com.abc.fos.work.FOSWork - Work Unit Completed:DEEMED_ADJUSTMENT: Customer Id:2079
12:01:32.064 INFO  com.abc.fos.work.FOSWork - Work Unit Completed:DEEMED_ADJUSTMENT: Customer Id:2353
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Wed, 03 Feb 2016 16:12:59 GMT</pubDate>
    <dc:creator>plumainwfs</dc:creator>
    <dc:date>2016-02-03T16:12:59Z</dc:date>
    <item>
      <title>How do I configure props.conf using my sample data for proper line breaking based on time?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-do-I-configure-props-conf-using-my-sample-data-for-proper/m-p/265651#M50952</link>
      <description>&lt;P&gt;Sample log extract below:&lt;/P&gt;

&lt;P&gt;Splunk reads the log as one event and takes the pricing date: 2/3/2016 as the actual date and matched that to the time 12:00:01.093&lt;/P&gt;

&lt;P&gt;Please advise how do I go about generating a separate log event for the different events based on the time? Lines can range in between 1-257 lines depending on the log. &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;12:00:01.093 INFO  c.w.f.service.delegate.FOSJobManager - BatchId:147,LoopingType:BY_CUSTOMER,OrgId:126,PricingDate:02/03/2016,CurrentJob:DEEMED_ADJUSTMENT_JOB,LastJob:DEEMED_ADJUSTMENT_JOB,DataSource:jdbc/FOS,EmailFlag:N,SingleCustomerId:-1,SingleLocationId:-1,UserId:1234,RespId:56789,ApplnId:123
12:00:01.093 INFO  com.abc.fos.job.FOSJob - Entering run Method
12:00:01.327 INFO  com.abc.fos.job.FOSJob - DEEMED_ADJUSTMENT::Customer Count:815
12:00:01.369 INFO  com.abc.fos.job.FOSJob - Total work units created :815
12:00:01.373 INFO  com.abc.fos.job.FOSJob - Exiting run Method
12:01:31.228 INFO  com.abc.fos.work.FOSWork - Work Unit Completed:DEEMED_ADJUSTMENT: Customer Id:2272
12:01:31.228 INFO  com.abc.fos.work.FOSWork - Work Unit Completed:DEEMED_ADJUSTMENT: Customer Id:2094
12:01:31.579 INFO  com.abc.fos.work.FOSWork - Work Unit Completed:DEEMED_ADJUSTMENT: Customer Id:2454
12:01:31.645 INFO  com.abc.fos.work.FOSWork - Work Unit Completed:DEEMED_ADJUSTMENT: Customer Id:2079
12:01:32.064 INFO  com.abc.fos.work.FOSWork - Work Unit Completed:DEEMED_ADJUSTMENT: Customer Id:2353
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 03 Feb 2016 16:12:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-do-I-configure-props-conf-using-my-sample-data-for-proper/m-p/265651#M50952</guid>
      <dc:creator>plumainwfs</dc:creator>
      <dc:date>2016-02-03T16:12:59Z</dc:date>
    </item>
    <item>
      <title>Re: How do I configure props.conf using my sample data for proper line breaking based on time?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-do-I-configure-props-conf-using-my-sample-data-for-proper/m-p/265652#M50953</link>
      <description>&lt;P&gt;Try this for your props.conf on Indexer/Heavy FOrwarder&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[YourSourcetype]
SHOULD_LINEMERGE=false
LINE_BREAKER=([\r\n]+)(?=\s*\d+:\d+:\d+)
TIME_FORMAT=%H:%M:%S.%N
TIME_PREFIX=^\s*
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 03 Feb 2016 18:49:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-do-I-configure-props-conf-using-my-sample-data-for-proper/m-p/265652#M50953</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2016-02-03T18:49:57Z</dc:date>
    </item>
    <item>
      <title>Re: How do I configure props.conf using my sample data for proper line breaking based on time?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-do-I-configure-props-conf-using-my-sample-data-for-proper/m-p/265653#M50954</link>
      <description>&lt;P&gt;Thanks somesoni2; the sample log above is actually from a &lt;STRONG&gt;file_name.out&lt;/STRONG&gt; file which right now is not being indexed by splunk, not sure if this is the case that Splunk is not able to read &lt;STRONG&gt;file_name.out&lt;/STRONG&gt; files; it did at one point and it works when I manually add. &lt;/P&gt;

&lt;P&gt;I was wondering how do I troubleshoot this now as to why it was able to index this but it suddenly stopped. &lt;/P&gt;

&lt;P&gt;I am using a splunkforwarder and monitor the log file on the server (example: &lt;STRONG&gt;/abc/def/file_name.out&lt;/STRONG&gt;)&lt;BR /&gt;
So I have an input file with that information above to monitor and send to a certain index and set sourcetype&lt;/P&gt;

&lt;P&gt;Not sure if this is a limitation or I am doing something wrong.&lt;/P&gt;</description>
      <pubDate>Fri, 05 Feb 2016 16:20:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-do-I-configure-props-conf-using-my-sample-data-for-proper/m-p/265653#M50954</guid>
      <dc:creator>plumainwfs</dc:creator>
      <dc:date>2016-02-05T16:20:43Z</dc:date>
    </item>
  </channel>
</rss>

