<?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: Line break in multiline event in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/Line-break-in-multiline-event/m-p/95092#M19816</link>
    <description>&lt;P&gt;sorry, I thought you were asking how to split lines in single events &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; Glad you've found the solution anyway!&lt;BR /&gt;
BTW SHOULD_LINEMERGE is set True by default so you won't need to specify it in props.conf &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 23 Jan 2013 11:14:01 GMT</pubDate>
    <dc:creator>stefano_guidoba</dc:creator>
    <dc:date>2013-01-23T11:14:01Z</dc:date>
    <item>
      <title>Line break in multiline event</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Line-break-in-multiline-event/m-p/95089#M19813</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;

&lt;P&gt;I have a script which gather each db and display the schema, name, tablesapce indexspace and date from each table&lt;/P&gt;

&lt;P&gt;It looks like this&lt;BR /&gt;
schema name tablesapce indexspace date&lt;BR /&gt;
SYS Table1 3434 3432 2013-01-22&lt;BR /&gt;
SYS Table2 34535 33 2013-01-22&lt;/P&gt;

&lt;P&gt;When I get an event under 257 Tables, they were displayed as one event.&lt;BR /&gt;
If I get and event whit more than 257 Tables then the first event is a 257 line event and the other hundrets of events are single line events.&lt;/P&gt;

&lt;P&gt;I have set MAX_EVENTS = 5000 in the inputs.conf and restarted the forwarder but without success&lt;/P&gt;

&lt;P&gt;Do you have any hints how I get this events as one multiline event?&lt;/P&gt;

&lt;P&gt;Thanks &lt;BR /&gt;
Rob&lt;/P&gt;</description>
      <pubDate>Tue, 22 Jan 2013 14:44:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Line-break-in-multiline-event/m-p/95089#M19813</guid>
      <dc:creator>RobertRi</dc:creator>
      <dc:date>2013-01-22T14:44:21Z</dc:date>
    </item>
    <item>
      <title>Re: Line break in multiline event</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Line-break-in-multiline-event/m-p/95090#M19814</link>
      <description>&lt;P&gt;in props.conf set SHOULD_LINEMERGE parameter for this particular input to false&lt;BR /&gt;
    [sourcetype]&lt;BR /&gt;
    SHOULD_LINEMERGE = false&lt;/P&gt;

&lt;P&gt;By default it's set to true, so Splunk will assume that until a line breaker event is found (e.g. a timestamp) all the following data are grouped in one single event. After 256 lines, Splunk automatically cut the event.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 13:09:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Line-break-in-multiline-event/m-p/95090#M19814</guid>
      <dc:creator>stefano_guidoba</dc:creator>
      <dc:date>2020-09-28T13:09:40Z</dc:date>
    </item>
    <item>
      <title>Re: Line break in multiline event</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Line-break-in-multiline-event/m-p/95091#M19815</link>
      <description>&lt;P&gt;Hi Stefano&lt;/P&gt;

&lt;P&gt;I have used the following in the props.conf on the forwarder to keep the multiline event together.&lt;/P&gt;

&lt;P&gt;[sourcetype]&lt;BR /&gt;
SHOULD_LINEMERGE = true&lt;BR /&gt;
MAX_EVENTS = 5000&lt;/P&gt;

&lt;P&gt;now the events are gathered together&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 13:10:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Line-break-in-multiline-event/m-p/95091#M19815</guid>
      <dc:creator>RobertRi</dc:creator>
      <dc:date>2020-09-28T13:10:12Z</dc:date>
    </item>
    <item>
      <title>Re: Line break in multiline event</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Line-break-in-multiline-event/m-p/95092#M19816</link>
      <description>&lt;P&gt;sorry, I thought you were asking how to split lines in single events &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; Glad you've found the solution anyway!&lt;BR /&gt;
BTW SHOULD_LINEMERGE is set True by default so you won't need to specify it in props.conf &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Jan 2013 11:14:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Line-break-in-multiline-event/m-p/95092#M19816</guid>
      <dc:creator>stefano_guidoba</dc:creator>
      <dc:date>2013-01-23T11:14:01Z</dc:date>
    </item>
    <item>
      <title>Re: Line break in multiline event</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Line-break-in-multiline-event/m-p/95093#M19817</link>
      <description>&lt;P&gt;you gave me the necessary hint, thanks&lt;/P&gt;</description>
      <pubDate>Wed, 23 Jan 2013 11:27:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Line-break-in-multiline-event/m-p/95093#M19817</guid>
      <dc:creator>RobertRi</dc:creator>
      <dc:date>2013-01-23T11:27:56Z</dc:date>
    </item>
  </channel>
</rss>

