<?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: How can I break down an event in Installation</title>
    <link>https://community.splunk.com/t5/Installation/How-can-I-break-down-an-event/m-p/361279#M7847</link>
    <description>&lt;P&gt;It is a single instance yes and props.conf needs to be placed in application's local folder, since its the application that takes data from website.  &lt;/P&gt;</description>
    <pubDate>Thu, 08 Feb 2018 12:05:59 GMT</pubDate>
    <dc:creator>ninisimonishvil</dc:creator>
    <dc:date>2018-02-08T12:05:59Z</dc:date>
    <item>
      <title>How can I break down an event</title>
      <link>https://community.splunk.com/t5/Installation/How-can-I-break-down-an-event/m-p/361275#M7843</link>
      <description>&lt;P&gt;I have an input from app  - WEB Input&lt;/P&gt;

&lt;P&gt;It extracts last 5 events from webpage every 1 minute. however instead of spitting them into 5 Splunk sees it as 1 event :&lt;/P&gt;

&lt;P&gt;განცხადებების სტატუსების ბოლო 5 ცვლილება მიმდინარეობს ხელშეკრულების მომზადება 07.02.2018 16:01 NAT180000701 შემსყიდველი: შპს ,,ბათუმის წყალი\" კატეგორია: 44100000 არ შედგა 07.02.2018 16:01 NAT180001544 შემსყიდველი: ახალციხის მუნიციპალიტეტის მერია კატეგორია: 50100000 გამარჯვებული გამოვლენილია 07.02.2018 16:00 NAT180000701 შემსყიდველი: შპს ,,ბათუმის წყალი\" კატეგორია: 44100000 შერჩევა/შეფასება 07.02.2018 16:00 NAT180000701 შემსყიდველი: შპს ,,ბათუმის წყალი\" კატეგორია: 44100000 წინადადებების მიღება დასრულებულია 07.02.2018 16:00 NAT180001544 შემსყიდველი: ახალციხის მუნიციპალიტეტის მერია კატეგორია: 50100000"&lt;/P&gt;

&lt;P&gt;every event starts with date  and ends with space followed by 8 consecutive numbers. &lt;/P&gt;

&lt;P&gt;I tried to use SHOULD_MERGE and MUST_BREAK AFTER  \s\d{8}&lt;BR /&gt;
Also tried BREAK_ONLY_BEFORE   \d{2}[.]\d{2}[.]\d{4} \d{2}:\d{2}&lt;/P&gt;

&lt;P&gt;However getting no results. &lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 17:58:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Installation/How-can-I-break-down-an-event/m-p/361275#M7843</guid>
      <dc:creator>ninisimonishvil</dc:creator>
      <dc:date>2020-09-29T17:58:59Z</dc:date>
    </item>
    <item>
      <title>Re: How can I break down an event</title>
      <link>https://community.splunk.com/t5/Installation/How-can-I-break-down-an-event/m-p/361276#M7844</link>
      <description>&lt;P&gt;Have a look at &lt;A href="http://docs.splunk.com/Documentation/Splunk/7.0.2/Data/Configureeventlinebreaking" target="_blank"&gt;Configure event line breaking&lt;/A&gt;.&lt;/P&gt;

&lt;P&gt;Event line breaking consists of two steps: 1st) &lt;STRONG&gt;line breaking&lt;/STRONG&gt; and 2nd) &lt;STRONG&gt;line merging&lt;/STRONG&gt;.&lt;/P&gt;

&lt;P&gt;Line breaking is mostly configured by LINE_BREAKER. By default, LINE_BREAKER is the newline character.&lt;/P&gt;

&lt;P&gt;Line merging is configured by SHOULD_LINEMERGE=true and a couple of other options like BREAK_ONLY_BEFORE_DATE.&lt;/P&gt;

&lt;P&gt;You should be concerned with line breaking. I suggest you try something like this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;LINE_BREAKER = ( \d{8})
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 29 Sep 2020 17:59:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Installation/How-can-I-break-down-an-event/m-p/361276#M7844</guid>
      <dc:creator>Yunagi</dc:creator>
      <dc:date>2020-09-29T17:59:04Z</dc:date>
    </item>
    <item>
      <title>Re: How can I break down an event</title>
      <link>https://community.splunk.com/t5/Installation/How-can-I-break-down-an-event/m-p/361277#M7845</link>
      <description>&lt;P&gt;Tried that  too.  Still no result. &lt;/P&gt;</description>
      <pubDate>Thu, 08 Feb 2018 10:44:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Installation/How-can-I-break-down-an-event/m-p/361277#M7845</guid>
      <dc:creator>ninisimonishvil</dc:creator>
      <dc:date>2018-02-08T10:44:45Z</dc:date>
    </item>
    <item>
      <title>Re: How can I break down an event</title>
      <link>https://community.splunk.com/t5/Installation/How-can-I-break-down-an-event/m-p/361278#M7846</link>
      <description>&lt;P&gt;Are you running a single instance of Splunk? Or do you have multiple insances? This configuration (via props.conf) needs to be placed on the instance where the indexing phase happens. That could be a heavy forwarder.&lt;/P&gt;

&lt;P&gt;Set SHOULD_LINEMERGE=false (along with the LINE_BREAKER option) and see if that makes a difference.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 17:59:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Installation/How-can-I-break-down-an-event/m-p/361278#M7846</guid>
      <dc:creator>Yunagi</dc:creator>
      <dc:date>2020-09-29T17:59:10Z</dc:date>
    </item>
    <item>
      <title>Re: How can I break down an event</title>
      <link>https://community.splunk.com/t5/Installation/How-can-I-break-down-an-event/m-p/361279#M7847</link>
      <description>&lt;P&gt;It is a single instance yes and props.conf needs to be placed in application's local folder, since its the application that takes data from website.  &lt;/P&gt;</description>
      <pubDate>Thu, 08 Feb 2018 12:05:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Installation/How-can-I-break-down-an-event/m-p/361279#M7847</guid>
      <dc:creator>ninisimonishvil</dc:creator>
      <dc:date>2018-02-08T12:05:59Z</dc:date>
    </item>
    <item>
      <title>Re: How can I break down an event</title>
      <link>https://community.splunk.com/t5/Installation/How-can-I-break-down-an-event/m-p/361280#M7848</link>
      <description>&lt;P&gt;Try it like this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[yoursourcetype]
LINE_BREAKER = ( )\d\d\.\d\d\.\d\d\d\d \d\d:\d\d
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;As you can see it should work: &lt;A href="https://picload.org/view/dagdiwil/splunk-web-input.png.html"&gt;screenshot&lt;/A&gt;&lt;BR /&gt;
(I autotranslated your input file.)&lt;/P&gt;

&lt;P&gt;If it still does not work, can you post your props.conf? I would like to see the relevant stanza.&lt;/P&gt;

&lt;P&gt;Also, don't forget to restart Splunk after editing configuration files.&lt;/P&gt;</description>
      <pubDate>Thu, 08 Feb 2018 15:52:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Installation/How-can-I-break-down-an-event/m-p/361280#M7848</guid>
      <dc:creator>Yunagi</dc:creator>
      <dc:date>2018-02-08T15:52:02Z</dc:date>
    </item>
    <item>
      <title>Re: How can I break down an event</title>
      <link>https://community.splunk.com/t5/Installation/How-can-I-break-down-an-event/m-p/361281#M7849</link>
      <description>&lt;P&gt;worked. thanks a lot!&lt;/P&gt;</description>
      <pubDate>Fri, 09 Feb 2018 06:18:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Installation/How-can-I-break-down-an-event/m-p/361281#M7849</guid>
      <dc:creator>ninisimonishvil</dc:creator>
      <dc:date>2018-02-09T06:18:04Z</dc:date>
    </item>
  </channel>
</rss>

