<?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 LINE_BREAKER not working correctly in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/LINE-BREAKER-not-working-correctly/m-p/253090#M48633</link>
    <description>&lt;P&gt;The event I want to break on looks like this: &lt;/P&gt;

&lt;P&gt;25/Jan/17:10:23:00:069+0000 &lt;A href="https://community.splunk.com/FOO"&gt;DEBUG&lt;/A&gt; Evaluation of condition [188:FTP Mastering Users] took 0 ms&lt;/P&gt;

&lt;P&gt;props.conf looks like this:&lt;BR /&gt;
&lt;STRONG&gt;LINE_BREAKER = ([\r\n]+)(\d+/\w{3}/\d+:\d{2}:\d{2}:\d{2}:\d{3})&lt;/STRONG&gt;&lt;BR /&gt;
      I've also tried this:&lt;BR /&gt;
          &lt;STRONG&gt;LINE_BREAKER = ([\r\n]+)(\d+\/\w{3}\/\d+:\d{2}:\d{2}:\d{2}:\d{3})&lt;/STRONG&gt;&lt;BR /&gt;
TIME_FORMAT = %-m/%b/%y:%H:%M:%S:%3N%z&lt;BR /&gt;
TRUNCATE = 0&lt;/P&gt;

&lt;P&gt;I'm still finding that my indexers are now combining every event matching the REGEX into a single event ( until the max events boundary is reached )&lt;/P&gt;

&lt;P&gt;I figure I'm getting hung up on the "forward slash" in the date vs what I have in the REGEX, but have not been able to ingest this particular datasource accurately. So do I need to go a step further with regards to &lt;/P&gt;</description>
    <pubDate>Wed, 25 Jan 2017 16:36:26 GMT</pubDate>
    <dc:creator>pkeller</dc:creator>
    <dc:date>2017-01-25T16:36:26Z</dc:date>
    <item>
      <title>LINE_BREAKER not working correctly</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/LINE-BREAKER-not-working-correctly/m-p/253090#M48633</link>
      <description>&lt;P&gt;The event I want to break on looks like this: &lt;/P&gt;

&lt;P&gt;25/Jan/17:10:23:00:069+0000 &lt;A href="https://community.splunk.com/FOO"&gt;DEBUG&lt;/A&gt; Evaluation of condition [188:FTP Mastering Users] took 0 ms&lt;/P&gt;

&lt;P&gt;props.conf looks like this:&lt;BR /&gt;
&lt;STRONG&gt;LINE_BREAKER = ([\r\n]+)(\d+/\w{3}/\d+:\d{2}:\d{2}:\d{2}:\d{3})&lt;/STRONG&gt;&lt;BR /&gt;
      I've also tried this:&lt;BR /&gt;
          &lt;STRONG&gt;LINE_BREAKER = ([\r\n]+)(\d+\/\w{3}\/\d+:\d{2}:\d{2}:\d{2}:\d{3})&lt;/STRONG&gt;&lt;BR /&gt;
TIME_FORMAT = %-m/%b/%y:%H:%M:%S:%3N%z&lt;BR /&gt;
TRUNCATE = 0&lt;/P&gt;

&lt;P&gt;I'm still finding that my indexers are now combining every event matching the REGEX into a single event ( until the max events boundary is reached )&lt;/P&gt;

&lt;P&gt;I figure I'm getting hung up on the "forward slash" in the date vs what I have in the REGEX, but have not been able to ingest this particular datasource accurately. So do I need to go a step further with regards to &lt;/P&gt;</description>
      <pubDate>Wed, 25 Jan 2017 16:36:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/LINE-BREAKER-not-working-correctly/m-p/253090#M48633</guid>
      <dc:creator>pkeller</dc:creator>
      <dc:date>2017-01-25T16:36:26Z</dc:date>
    </item>
    <item>
      <title>Re: LINE_BREAKER not working correctly</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/LINE-BREAKER-not-working-correctly/m-p/253091#M48634</link>
      <description>&lt;P&gt;Give this a try&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[yourSourcetype]
SHOULD_LINEMERGE = false
LINE_BREAKER = ([\r\n]+)(?=\d+\/\w+\/\d+:\d+:\d+:\d+)
TIME_FORMAT = %d/%b/%y:%H:%M:%S:%N%z
TIME_PREFIX = ^
MAX_TIMESTAMP_LOOKAHEAD = 27
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 25 Jan 2017 16:42:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/LINE-BREAKER-not-working-correctly/m-p/253091#M48634</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2017-01-25T16:42:04Z</dc:date>
    </item>
    <item>
      <title>Re: LINE_BREAKER not working correctly</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/LINE-BREAKER-not-working-correctly/m-p/253092#M48635</link>
      <description>&lt;P&gt;Try this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;([\r\n]+)(\d+\/\w{3}\/\d+:\d{2}:\d{2}:\d{2}:\d{3})
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;You can test your RegEx with &lt;A href="http://www.regex101.com"&gt;http://www.regex101.com&lt;/A&gt;.  This showed that you were not escaping your &lt;CODE&gt;/&lt;/CODE&gt; characters.&lt;/P&gt;</description>
      <pubDate>Wed, 25 Jan 2017 16:44:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/LINE-BREAKER-not-working-correctly/m-p/253092#M48635</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2017-01-25T16:44:30Z</dc:date>
    </item>
  </channel>
</rss>

