<?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: Inconsistent linebreaker behavior in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/Inconsistent-linebreaker-behavior/m-p/370561#M67278</link>
    <description>&lt;P&gt;Does the LINE_BREAKER Regex require full regex?  Can't remember or not, as if so you might need to change the spaces to "\s" instead.  &lt;/P&gt;

&lt;P&gt;Also the brackets around the "Seconds" if not a capture group will need to be escaped "\".  Forward slash isn't a special character as such doesn't need to be escaped: "\d{2}&lt;STRONG&gt;\/&lt;/STRONG&gt;\d{2}" &lt;/P&gt;

&lt;P&gt;So if it does require full regex then the below is what it should look like to a degree.  If you read the &lt;A href="http://docs.splunk.com/Documentation/Splunk/latest/Admin/Propsconf"&gt;props.conf&lt;/A&gt; on LINE_BREAKER you will notice that the Capture Group "()" is what it breaks upon and doesn't ingest, i.e. you shouldn't see the "User Time..." coming up in any of the events&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;LINE_BREAKER = User\s+Time\s+\(Seconds\)\s+:\s+\d+\s+=\s+\w{3}\s+\d{2}/\d{2}/\d{2}\s+\d{2}:\d{2}:\d{2}\s+[A-Z]+([\r\n]+)
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;&lt;EM&gt;The contents of the first capturing group are discarded, and will not be present in any event.  You are telling Splunk that this text comes between lines&lt;/EM&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 12 Jan 2018 03:54:36 GMT</pubDate>
    <dc:creator>lmaclean</dc:creator>
    <dc:date>2018-01-12T03:54:36Z</dc:date>
    <item>
      <title>Inconsistent linebreaker behavior</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Inconsistent-linebreaker-behavior/m-p/370527#M67244</link>
      <description>&lt;P&gt;Hello all,&lt;/P&gt;

&lt;P&gt;I have configured the props file to NOT break the event when encounters a new line with a date, however, sometimes the event is broken in the line containing the date and sometimes the event is not truncated. I don't understand the reason for different behaviors.&lt;/P&gt;

&lt;P&gt;Props file:&lt;BR /&gt;
SHOULD_LINEMERGE=true&lt;BR /&gt;
BREAK_ONLY_BEFORE_DATE=false&lt;BR /&gt;
BREAK_ONLY_BEFORE=SOMEJUNK&lt;BR /&gt;
MAX_TIMESTAMP_LOOKAHEAD=450&lt;BR /&gt;
TIME_PREFIX==\s+\w{3}&lt;BR /&gt;
TIME_FORMAT=%m/%d/%y %H:%M:%S %Z&lt;/P&gt;

&lt;P&gt;File that is being read:&lt;/P&gt;

&lt;P&gt;= JOB       : R3BRP#DECOUPLE_NFE[(0006 01/02/18),(0AAAAAAAAAAIO5BE)].CL_S09_IFIPD_DECOUPLE_NFE_R3BRP_01&lt;BR /&gt;
= USER      : tws            631/S/&lt;EM&gt;ATHOCO/IBM/AUTOMATION_COORD_HORTOLANDIA/&lt;BR /&gt;
= JCLFILE   : / -job IFIPD_DECOUPLE_NFE -user FF_PRO1 -i 23154800 -c a&lt;BR /&gt;
= Job Number: 43977410&lt;BR /&gt;
= Tue 01/02/18 15:50:05 BRST&lt;BR /&gt;
*&lt;/EM&gt;* WARNING 914 ***  EEWO0914W An internal error has occurred. Either the joblog or the job protocol for the following job does not exist:&lt;BR /&gt;
*** WARNING 904 ***  EEWO0904W The program could not copy the joblog to stdout. &lt;BR /&gt;
*** WARNING 914 ***  EEWO0914W An internal error has occurred. Either the joblog or the job protocol for the following job does not exist:&lt;BR /&gt;
= Exit Status           : 0&lt;BR /&gt;
= System Time (Seconds) : 0     Elapsed Time (Minutes) : 0&lt;BR /&gt;
= User Time (Seconds)   : 0&lt;BR /&gt;
= Tue 01/02/18 15:50:39 BRST&lt;/P&gt;

&lt;P&gt;Sometimes I got the multiline event containing the 12 lines, but sometimes the event is truncated like below sample:&lt;/P&gt;

&lt;P&gt;= JOB       : R3BRP#DECOUPLE_NFE[(0006 01/02/18),(0AAAAAAAAAAIO5BE)].CL_S09_IFIPD_DECOUPLE_NFE_R3BRP_01&lt;BR /&gt;
= USER      : tws            631/S/*ATHOCO/IBM/AUTOMATION_COORD_HORTOLANDIA/&lt;BR /&gt;
= JCLFILE   : / -job IFIPD_DECOUPLE_NFE -user FF_PRO1 -i 23154800 -c a&lt;BR /&gt;
= Job Number: 35391514&lt;BR /&gt;
= Tue 01/02/18 15:51:10 BRST&lt;/P&gt;

&lt;P&gt;I need to have all entire text log indexed (12 lines) and not only the 5 above lines. Dont know why for sometimes the event is broken in the line date.&lt;/P&gt;

&lt;P&gt;Thanks and regard,&lt;BR /&gt;
Danillo Pavan&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 17:28:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Inconsistent-linebreaker-behavior/m-p/370527#M67244</guid>
      <dc:creator>danillopavan</dc:creator>
      <dc:date>2020-09-29T17:28:05Z</dc:date>
    </item>
    <item>
      <title>Re: Inconsistent linebreaker behavior</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Inconsistent-linebreaker-behavior/m-p/370528#M67245</link>
      <description>&lt;P&gt;Check the _internal index for sourectype "splunkd" where you're indexing. Look for 'ERROR' or 'WARN' for that sourcetype.&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jan 2018 02:08:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Inconsistent-linebreaker-behavior/m-p/370528#M67245</guid>
      <dc:creator>petercow</dc:creator>
      <dc:date>2018-01-04T02:08:58Z</dc:date>
    </item>
    <item>
      <title>Re: Inconsistent linebreaker behavior</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Inconsistent-linebreaker-behavior/m-p/370529#M67246</link>
      <description>&lt;P&gt;Look within the _internal index for the answers and to get at the issue faster use:&lt;/P&gt;

&lt;P&gt;These errors are the ones related to TIME_FORMAT or LINE_BREAKER errors:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=_internal source=*splunkd.log component=DataParserVerbose WARN OR ERROR
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;For some related to Line Breaking issues:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=_internal source=*splunkd.log component=LineBreakingProcessor WARN OR ERROR
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;These are the ones that will be related to MAX_EVENTS (256 Lines by default) &amp;amp; TRUNCATE (10,000 bytes by default) which are some of the top two causes but there are many others...&lt;/P&gt;

&lt;P&gt;A good 2016 Splunk .Conf preso (also one in '13 &amp;amp; '14) is the "Jiffy lube quick tune up for you Splunk environment":&lt;/P&gt;

&lt;P&gt;&lt;A href="https://conf.splunk.com/files/2016/slides/jiffy-lube-quick-tune-up-for-your-splunk-environment.pdf" target="_blank"&gt;https://conf.splunk.com/files/2016/slides/jiffy-lube-quick-tune-up-for-your-splunk-environment.pdf&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 17:29:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Inconsistent-linebreaker-behavior/m-p/370529#M67246</guid>
      <dc:creator>lmaclean</dc:creator>
      <dc:date>2020-09-29T17:29:10Z</dc:date>
    </item>
    <item>
      <title>Re: Inconsistent linebreaker behavior</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Inconsistent-linebreaker-behavior/m-p/370530#M67247</link>
      <description>&lt;P&gt;Hello petercow, I have executed the below query:&lt;/P&gt;

&lt;P&gt;index=_internal source=*splunkd.log component=LineBreakingProcessor&lt;/P&gt;

&lt;P&gt;and just found some ERROR entries related to the BREAK_ONLY_BEFORE property that I have configured to read entire file, but it happened just few days ago - now i dont have any entry for this search.&lt;/P&gt;

&lt;P&gt;"LineBreakingProcessor - Line breaking regex has no capturing groups: somethingjunk"&lt;/P&gt;

&lt;P&gt;Executing the below query, didnt return any entry&lt;/P&gt;

&lt;P&gt;index=_internal source=*splunkd.log component=DataParserVerbose&lt;/P&gt;

&lt;P&gt;Please let me know if there is any other search command that I could run to try to find out the reasons...&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 17:29:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Inconsistent-linebreaker-behavior/m-p/370530#M67247</guid>
      <dc:creator>danillopavan</dc:creator>
      <dc:date>2020-09-29T17:29:20Z</dc:date>
    </item>
    <item>
      <title>Re: Inconsistent linebreaker behavior</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Inconsistent-linebreaker-behavior/m-p/370531#M67248</link>
      <description>&lt;P&gt;Hello Imaclean, I have executed the both queries ( for the component DataParserVerbose  and LineBreakingProcessor ), but didnt find anything.&lt;/P&gt;

&lt;P&gt;For the search: index=_internal source=*splunkd.log component=LineBreakingProcessor&lt;/P&gt;

&lt;P&gt;and just found some ERROR entries related to the BREAK_ONLY_BEFORE property that I have configured to read entire file, but it happened just few days ago - now i dont have any entry for this search.&lt;/P&gt;

&lt;P&gt;"LineBreakingProcessor - Line breaking regex has no capturing groups: somethingjunk"&lt;/P&gt;

&lt;P&gt;Executing the below query, didnt return any entry&lt;/P&gt;

&lt;P&gt;index=_internal source=*splunkd.log component=DataParserVerbose&lt;/P&gt;

&lt;P&gt;The problem is that it is so intermitent, sometimes all entire the file is indexed correctly and sometimes it is truncated in a specific line containing date. I have already used the SEDCMD to replace the data format by a string, but even with this replacement the file is truncated sometimes. So strange...&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 17:29:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Inconsistent-linebreaker-behavior/m-p/370531#M67248</guid>
      <dc:creator>danillopavan</dc:creator>
      <dc:date>2020-09-29T17:29:23Z</dc:date>
    </item>
    <item>
      <title>Re: Inconsistent linebreaker behavior</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Inconsistent-linebreaker-behavior/m-p/370532#M67249</link>
      <description>&lt;P&gt;I have included the property: "TRUNCATE = 0" in props file and still not work. Sometimes the file is truncated.&lt;/P&gt;</description>
      <pubDate>Fri, 05 Jan 2018 15:25:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Inconsistent-linebreaker-behavior/m-p/370532#M67249</guid>
      <dc:creator>danillopavan</dc:creator>
      <dc:date>2018-01-05T15:25:32Z</dc:date>
    </item>
    <item>
      <title>Re: Inconsistent linebreaker behavior</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Inconsistent-linebreaker-behavior/m-p/370533#M67250</link>
      <description>&lt;P&gt;So are you saying you get the regex error when you get the bad line-breaking?&lt;/P&gt;</description>
      <pubDate>Fri, 05 Jan 2018 15:27:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Inconsistent-linebreaker-behavior/m-p/370533#M67250</guid>
      <dc:creator>petercow</dc:creator>
      <dc:date>2018-01-05T15:27:52Z</dc:date>
    </item>
    <item>
      <title>Re: Inconsistent linebreaker behavior</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Inconsistent-linebreaker-behavior/m-p/370534#M67251</link>
      <description>&lt;P&gt;Some days ago, i was getting this error that I posted saying that it was not encountered the word that I have configured for the property "BREAK_ONLY_BEFORE". Now i am not facing any issue anymore, but the event is getting truncated sometimes incorrectly as I posted in the question.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 17:29:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Inconsistent-linebreaker-behavior/m-p/370534#M67251</guid>
      <dc:creator>danillopavan</dc:creator>
      <dc:date>2020-09-29T17:29:59Z</dc:date>
    </item>
    <item>
      <title>Re: Inconsistent linebreaker behavior</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Inconsistent-linebreaker-behavior/m-p/370535#M67252</link>
      <description>&lt;P&gt;Perhaps you could try:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;SHOULD_LINEMERGE = false
MAX_TIMESTAMP_LOOKAHEAD = 40
TIME_PREFIX=\=\s+\w{3}
TIME_FORMAT=%m/%d/%y %H:%M:%S %Z
LINE_BREAKER = (\n)NOBREAKINGPLEASE
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Assuming this file is always 12 lines because the above will never create a break.&lt;/P&gt;</description>
      <pubDate>Sat, 06 Jan 2018 07:10:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Inconsistent-linebreaker-behavior/m-p/370535#M67252</guid>
      <dc:creator>gjanders</dc:creator>
      <dc:date>2018-01-06T07:10:14Z</dc:date>
    </item>
    <item>
      <title>Re: Inconsistent linebreaker behavior</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Inconsistent-linebreaker-behavior/m-p/370536#M67253</link>
      <description>&lt;P&gt;Hello garethatiag,&lt;/P&gt;

&lt;P&gt;I have included this one also. It seems that it has decreased the number of times the event is being truncated, however is still happening. Sometimes (around 20% of the total of events) are still being truncated in the line date.&lt;/P&gt;</description>
      <pubDate>Sat, 06 Jan 2018 16:16:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Inconsistent-linebreaker-behavior/m-p/370536#M67253</guid>
      <dc:creator>danillopavan</dc:creator>
      <dc:date>2018-01-06T16:16:01Z</dc:date>
    </item>
    <item>
      <title>Re: Inconsistent linebreaker behavior</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Inconsistent-linebreaker-behavior/m-p/370537#M67254</link>
      <description>&lt;P&gt;Maybe it is a important information. When I try to use the Data preview tool, using the same log file and sourcetype, it is showing only the correct lines (without truncate the lines) however it is showing a WARN information: &lt;BR /&gt;
"Could not use strptime to parse timestamp from ": R3BRP#DECOUPLE_NFE[(0006 01/02/".&lt;BR /&gt;
"Failed to parse timestamp. Defaulting to file modtime."&lt;/P&gt;</description>
      <pubDate>Sat, 06 Jan 2018 16:29:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Inconsistent-linebreaker-behavior/m-p/370537#M67254</guid>
      <dc:creator>danillopavan</dc:creator>
      <dc:date>2018-01-06T16:29:11Z</dc:date>
    </item>
    <item>
      <title>Re: Inconsistent linebreaker behavior</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Inconsistent-linebreaker-behavior/m-p/370538#M67255</link>
      <description>&lt;P&gt;If your using the LINE_BREAKER than the TRUNCATE setting should apply based on the amount of data, so you could increase that to avoid truncation, the splunkd log file should have a WARN or ERROR around the time of the issue if this is the case.&lt;/P&gt;

&lt;P&gt;If your using the BREAK_ONLY_BEFORE_DATE (the default) then the parsing of the date matters.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 17:34:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Inconsistent-linebreaker-behavior/m-p/370538#M67255</guid>
      <dc:creator>gjanders</dc:creator>
      <dc:date>2020-09-29T17:34:41Z</dc:date>
    </item>
    <item>
      <title>Re: Inconsistent linebreaker behavior</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Inconsistent-linebreaker-behavior/m-p/370539#M67256</link>
      <description>&lt;P&gt;Hello there @danillopavan&lt;/P&gt;

&lt;P&gt;Try something like this.&lt;BR /&gt;
&lt;STRONG&gt;props.conf&lt;/STRONG&gt;&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; [your_sourcetype]
 BREAK_ONLY_BEFORE = (= User Time \(Seconds\) : \d+\n= \w{3} \d{2}\/\d{2}\/\d{2} \d{2}:\d{2}:\d{2} [A-Z]+)
 DATETIME_CONFIG = 
 LINE_BREAKER = (= User Time \(Seconds\) : \d+\n= \w{3} \d{2}\/\d{2}\/\d{2} \d{2}:\d{2}:\d{2} [A-Z]+)
 NO_BINARY_CHECK = true
 SHOULD_LINEMERGE = false
 TIME_PREFIX = = [A-Z][a-z]+\s
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Hope it helps.&lt;/P&gt;</description>
      <pubDate>Mon, 08 Jan 2018 15:19:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Inconsistent-linebreaker-behavior/m-p/370539#M67256</guid>
      <dc:creator>alemarzu</dc:creator>
      <dc:date>2018-01-08T15:19:04Z</dc:date>
    </item>
    <item>
      <title>Re: Inconsistent linebreaker behavior</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Inconsistent-linebreaker-behavior/m-p/370540#M67257</link>
      <description>&lt;P&gt;Hello alemarzu,&lt;/P&gt;

&lt;P&gt;Tried this configuration however the issue persists. Sometimes it is still truncating the indexed text. If you go via Data preview, it will show correctly the 9 lines. I dont understand why sometimes it is not following the correct way. just as curiosity: whenever the truncate happens, this occurs 2 ~ 3 times in sequence.&lt;/P&gt;

&lt;P&gt;I am using also SEDCMD and transform. Dont know if the priorities can impact in something.&lt;/P&gt;

&lt;P&gt;Thanks and regards,&lt;BR /&gt;
Danillo Pavan&lt;/P&gt;</description>
      <pubDate>Mon, 08 Jan 2018 16:46:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Inconsistent-linebreaker-behavior/m-p/370540#M67257</guid>
      <dc:creator>danillopavan</dc:creator>
      <dc:date>2018-01-08T16:46:03Z</dc:date>
    </item>
    <item>
      <title>Re: Inconsistent linebreaker behavior</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Inconsistent-linebreaker-behavior/m-p/370541#M67258</link>
      <description>&lt;P&gt;Hello alemarzu,&lt;/P&gt;

&lt;P&gt;I just executed the below query and got 22 entries in the last 15 minutes (where I had 3 truncated events and 12 correct events) regarding to the component "DateParserVerbose" with the error "Failed to parse timestamp". Maybe it could explain the intermittence. However if I test the props config via Data Preview, it would not show the timestamp failure...&lt;/P&gt;

&lt;P&gt;index=_internal source=&lt;EM&gt;splunkd.log&lt;/EM&gt; AggregatorMiningProcessor OR LineBreakingProcessor OR DateParserVerbose WARN &lt;/P&gt;</description>
      <pubDate>Mon, 08 Jan 2018 20:36:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Inconsistent-linebreaker-behavior/m-p/370541#M67258</guid>
      <dc:creator>danillopavan</dc:creator>
      <dc:date>2018-01-08T20:36:11Z</dc:date>
    </item>
    <item>
      <title>Re: Inconsistent linebreaker behavior</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Inconsistent-linebreaker-behavior/m-p/370542#M67259</link>
      <description>&lt;P&gt;Hi @danillopavan &lt;/P&gt;

&lt;P&gt;Thats weird, I'm running Splunk 7.x.1 and its working, what version are you? &lt;/P&gt;

&lt;P&gt;Try adding the TIME_FORMAT to your props.conf perhaps this might help and please could you share your actual props &amp;amp; transforms files ?&lt;/P&gt;

&lt;P&gt;KR.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Jan 2018 15:50:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Inconsistent-linebreaker-behavior/m-p/370542#M67259</guid>
      <dc:creator>alemarzu</dc:creator>
      <dc:date>2018-01-09T15:50:37Z</dc:date>
    </item>
    <item>
      <title>Re: Inconsistent linebreaker behavior</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Inconsistent-linebreaker-behavior/m-p/370543#M67260</link>
      <description>&lt;P&gt;Hello alemarzu. The version is 6.4&lt;/P&gt;

&lt;P&gt;Below we have the log file to be read by splunk, the props and tranform files:&lt;/P&gt;

&lt;P&gt;LOG FILE:&lt;/P&gt;

&lt;P&gt;===============================================================&lt;BR /&gt;
= JOB       : R3BRP#DECOUPLE_NFE[(0006 01/06/18),(0AAAAAAAAAAIROIP)].CL_S09_IFIPD_DECOUPLE_NFE_R3BRP_01&lt;BR /&gt;
= USER      : XXX           631/S/*ATHOCO/IBM/AUTOMATION_COORD_HORTOLANDIA/&lt;BR /&gt;
= JCLFILE   : / -job IFIPD_DECOUPLE_NFE -user FF_PRO1 -i 23154800 -c a&lt;BR /&gt;
= Job Number: 47383116&lt;/P&gt;

&lt;H1&gt;= Sat 01/06/18 17:10:57 BRST&lt;/H1&gt;

&lt;P&gt;+++ IBM Tivoli Workload Scheduler for Applications, method R3BATCH 8.5.0 (patchrev 1 - 16:42:24 Jun 13 2014)&lt;BR /&gt;
+++ is called with following parameters:&lt;BR /&gt;
+++ -t LJ -c R3BRP,SAPECCPINST1,ACSXTWS02 -n 172.22.8.248 -p 31111 -r 1971,1971 -s 0AAAAAAAAAAIROIP -d 20180106,1515196800 -l twsuser1 -o /amb/local/tws/sapeccpinst1/TWS/stdlist/2018.01.06/O47383116.1710 -j CL_S09_IFIPD_DECOUPLE_NFE_R3BRP_01,47383116 -- / -job IFIPD_DECOUPLE_NFE -user FF_PRO1 -i 23154800 -c a &lt;BR /&gt;
+++ EEWO1031I The Tivoli Workload Scheduler home directory was found: ./..&lt;BR /&gt;
+++ EEWO1027I The RFC connection is established: (1)&lt;BR /&gt;
+++ EEWO1023I Started the R/3 job at the following date and time: 01/06-17:11 : IFIPD_DECOUPLE_NFE, 17105901&lt;/P&gt;

&lt;P&gt;Sat Jan  6 17:10:57 2018&lt;BR /&gt;
+++ EEWO1007I The job status has been set to EXEC: IFIPD_DECOUPLE_NFE               17105901&lt;BR /&gt;
+++ EEWO1006I Job status: IFIPD_DECOUPLE_NFE               17105901 FINISHED&lt;BR /&gt;
+++ EEWO1061I Job IFIPD_DECOUPLE_NFE               with job ID 17105901 was executed on SAP application server XXXXX_YYYYYY_PPPPPPP.&lt;/P&gt;

&lt;P&gt;+++ EEWO1048I Retrieving the joblog of a job:: IFIPD_DECOUPLE_NFE              , 17105901&lt;/P&gt;

&lt;P&gt;*** WARNING 914 ***  EEWO0914W An internal error has occurred. Either the joblog or the job protocol for the following job does not exist:&lt;BR /&gt;
Job name: IFIPD_DECOUPLE_NFE&lt;BR /&gt;
Job ID: 17105901. &lt;/P&gt;

&lt;P&gt;*** WARNING 904 ***  EEWO0904W The program could not copy the joblog to stdout. &lt;/P&gt;

&lt;P&gt;*** WARNING 914 ***  EEWO0914W An internal error has occurred. Either the joblog or the job protocol for the following job does not exist:&lt;BR /&gt;
Job name: IFIPD_DECOUPLE_NFE&lt;BR /&gt;
Job ID: 17105901. &lt;BR /&gt;
+++ EEWO1012I BDC sessions are complete at: 01/06-17:11 : 0 &lt;/P&gt;

&lt;H1&gt;+++ EEWO1017I The job completed normally at the following date and time: 01/06-17:11 &lt;/H1&gt;

&lt;P&gt;= Exit Status           : 0&lt;BR /&gt;
= System Time (Seconds) : 0     Elapsed Time (Minutes) : 0&lt;BR /&gt;
= User Time (Seconds)   : 0&lt;/P&gt;

&lt;H1&gt;= Sat 01/06/18 17:11:32 BRST&lt;/H1&gt;

&lt;P&gt;Props file:&lt;BR /&gt;
TRUNCATE = 1000000&lt;BR /&gt;
BREAK_ONLY_BEFORE = (= User Time (Seconds) : \d+\n= \w{3} \d{2}\/\d{2}\/\d{2} \d{2}:\d{2}:\d{2} [A-Z]+)&lt;BR /&gt;
DATETIME_CONFIG = &lt;BR /&gt;
LINE_BREAKER = (= User Time (Seconds) : \d+\n= \w{3} \d{2}\/\d{2}\/\d{2} \d{2}:\d{2}:\d{2} [A-Z]+)&lt;BR /&gt;
NO_BINARY_CHECK = true&lt;BR /&gt;
SHOULD_LINEMERGE = false&lt;BR /&gt;
TIME_PREFIX = = [A-Z][a-z]+\s&lt;BR /&gt;
TIME_FORMAT = %m/%d/%y %H:%M:%S %Z&lt;BR /&gt;
SEDCMD-applychange01=s/[\r\n]\s*[A-z]+.+//g&lt;BR /&gt;
SEDCMD-applychange02=s/(**+.&lt;EM&gt;)//g&lt;BR /&gt;
SEDCMD-applychange04=s/(+++.&lt;/EM&gt;)//g&lt;BR /&gt;
SEDCMD-applychange05=s/(==+[\r\n]*)//g&lt;BR /&gt;
TRANSFORMS-set= setNullJob,setParsingJob&lt;/P&gt;

&lt;P&gt;Transform file&lt;BR /&gt;
[setNullJob]&lt;BR /&gt;
REGEX = .&lt;BR /&gt;
DEST_KEY = queue&lt;BR /&gt;
FORMAT = nullQueue&lt;/P&gt;

&lt;P&gt;[setParsingJob]&lt;BR /&gt;
REGEX = R3BRP#DECOUPLE_NFE&lt;BR /&gt;
DEST_KEY = queue&lt;BR /&gt;
FORMAT = indexQueue&lt;/P&gt;

&lt;P&gt;From this log file, I need to extract 3 data: start/end time, and the app server.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 17:35:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Inconsistent-linebreaker-behavior/m-p/370543#M67260</guid>
      <dc:creator>danillopavan</dc:creator>
      <dc:date>2020-09-29T17:35:59Z</dc:date>
    </item>
    <item>
      <title>Re: Inconsistent linebreaker behavior</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Inconsistent-linebreaker-behavior/m-p/370544#M67261</link>
      <description>&lt;P&gt;@garethatiag is 100% correct. Once these base configs are applied then it will work correctly. &lt;/P&gt;

&lt;P&gt;I try to stay away from the UI onboarding option and just edit &lt;CODE&gt;props.conf&lt;/CODE&gt; directly. &lt;/P&gt;</description>
      <pubDate>Tue, 09 Jan 2018 20:51:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Inconsistent-linebreaker-behavior/m-p/370544#M67261</guid>
      <dc:creator>skoelpin</dc:creator>
      <dc:date>2018-01-09T20:51:20Z</dc:date>
    </item>
    <item>
      <title>Re: Inconsistent linebreaker behavior</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Inconsistent-linebreaker-behavior/m-p/370545#M67262</link>
      <description>&lt;P&gt;You should use &lt;CODE&gt;LINE_BREAKER&lt;/CODE&gt; rather than &lt;CODE&gt;BREAK_ONLY_BEFORE&lt;/CODE&gt;. You should also set &lt;CODE&gt;SHOULD_LINEMERGE = false&lt;/CODE&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Jan 2018 20:52:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Inconsistent-linebreaker-behavior/m-p/370545#M67262</guid>
      <dc:creator>skoelpin</dc:creator>
      <dc:date>2018-01-09T20:52:34Z</dc:date>
    </item>
    <item>
      <title>Re: Inconsistent linebreaker behavior</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Inconsistent-linebreaker-behavior/m-p/370546#M67263</link>
      <description>&lt;P&gt;Don't do this..&lt;/P&gt;</description>
      <pubDate>Tue, 09 Jan 2018 20:52:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Inconsistent-linebreaker-behavior/m-p/370546#M67263</guid>
      <dc:creator>skoelpin</dc:creator>
      <dc:date>2018-01-09T20:52:53Z</dc:date>
    </item>
  </channel>
</rss>

