<?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: Break Large Events into Many Small Events in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/Break-Large-Events-into-Many-Small-Events/m-p/155773#M31607</link>
    <description>&lt;P&gt;Did you re-index all the data or are you looking at the same data? It needs to be re-indexed.&lt;/P&gt;</description>
    <pubDate>Wed, 07 May 2014 17:18:58 GMT</pubDate>
    <dc:creator>linu1988</dc:creator>
    <dc:date>2014-05-07T17:18:58Z</dc:date>
    <item>
      <title>Break Large Events into Many Small Events</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Break-Large-Events-into-Many-Small-Events/m-p/155770#M31604</link>
      <description>&lt;P&gt;I've run back and forth through the props.conf documentation and done a few circuits of Answers, but I haven't found anything that actually works yet, so here we are.&lt;/P&gt;

&lt;P&gt;I have these large multi-line events coming into splunk with source=tcp-raw. They look kind of like this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;@@@
-&amp;gt; section 1
*bunch of stuff here*
@@@
-&amp;gt; section 2
*bunch of stuff here*
@@@
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;and so on. The "@@@" is what I want to break the events up on, since it's an obvious delimiter. So I tried adding the following to props.conf&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[source::tcp-raw]
SHOULD_LINEMERGE = false
DATETIME_CONFIG = current
LINE_BREAKER = @@@
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;The result was splunk either not indexing the data at all, or throwing it out somehow. Whenever I'd send a new report with that stanza in place, nothing would show up. Removed it, and the data appeared in its normal unbroken form.&lt;/P&gt;

&lt;P&gt;What am I doing wrong?&lt;/P&gt;</description>
      <pubDate>Wed, 07 May 2014 15:33:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Break-Large-Events-into-Many-Small-Events/m-p/155770#M31604</guid>
      <dc:creator>willial</dc:creator>
      <dc:date>2014-05-07T15:33:35Z</dc:date>
    </item>
    <item>
      <title>Re: Break Large Events into Many Small Events</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Break-Large-Events-into-Many-Small-Events/m-p/155771#M31605</link>
      <description>&lt;P&gt;Try "BREAK_ONLY_BEFORE = @@@" instead of "LINE_BREAKER = @@@"&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 16:33:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Break-Large-Events-into-Many-Small-Events/m-p/155771#M31605</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2020-09-28T16:33:11Z</dc:date>
    </item>
    <item>
      <title>Re: Break Large Events into Many Small Events</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Break-Large-Events-into-Many-Small-Events/m-p/155772#M31606</link>
      <description>&lt;P&gt;OK, that fixed the problem of splunk throwing out the incoming data, but it's still not breaking up the events.&lt;/P&gt;</description>
      <pubDate>Wed, 07 May 2014 16:21:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Break-Large-Events-into-Many-Small-Events/m-p/155772#M31606</guid>
      <dc:creator>willial</dc:creator>
      <dc:date>2014-05-07T16:21:35Z</dc:date>
    </item>
    <item>
      <title>Re: Break Large Events into Many Small Events</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Break-Large-Events-into-Many-Small-Events/m-p/155773#M31607</link>
      <description>&lt;P&gt;Did you re-index all the data or are you looking at the same data? It needs to be re-indexed.&lt;/P&gt;</description>
      <pubDate>Wed, 07 May 2014 17:18:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Break-Large-Events-into-Many-Small-Events/m-p/155773#M31607</guid>
      <dc:creator>linu1988</dc:creator>
      <dc:date>2014-05-07T17:18:58Z</dc:date>
    </item>
    <item>
      <title>Re: Break Large Events into Many Small Events</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Break-Large-Events-into-Many-Small-Events/m-p/155774#M31608</link>
      <description>&lt;P&gt;Since I'm doing this in a test environment I'm able to throw a new batch of data at it on demand, which should then be indexed under the new rules. I'm following this process: change props.conf in /local, restart splunk server, send new data, check result, repeat.&lt;/P&gt;</description>
      <pubDate>Wed, 07 May 2014 17:40:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Break-Large-Events-into-Many-Small-Events/m-p/155774#M31608</guid>
      <dc:creator>willial</dc:creator>
      <dc:date>2014-05-07T17:40:18Z</dc:date>
    </item>
    <item>
      <title>Re: Break Large Events into Many Small Events</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Break-Large-Events-into-Many-Small-Events/m-p/155775#M31609</link>
      <description>&lt;P&gt;I've solved my own problem. The stanza now looks like:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;BREAK_ONLY_BEFORE = @@@
SHOULD_LINEMERGE = true
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;It's now splitting properly. &lt;/P&gt;</description>
      <pubDate>Wed, 07 May 2014 18:05:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Break-Large-Events-into-Many-Small-Events/m-p/155775#M31609</guid>
      <dc:creator>willial</dc:creator>
      <dc:date>2014-05-07T18:05:47Z</dc:date>
    </item>
  </channel>
</rss>

