<?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: Why does BREAK_ONLY_BEFORE work only for some events? in Splunk Dev</title>
    <link>https://community.splunk.com/t5/Splunk-Dev/Why-does-BREAK-ONLY-BEFORE-work-only-for-some-events/m-p/450671#M8167</link>
    <description>&lt;P&gt;Okay, I see what you're doing. I will provide you two set of configs, one for multi line events; and another for single line events. Please apply these configs per your use case.&lt;/P&gt;

&lt;P&gt;Multi line events (records with &lt;CODE&gt;name&lt;/CODE&gt; starting in same line):&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;{\"name\":\"\",\"\":,\"severity\":\"info\",\"time\":,\"host\":\"\",\"hostname\":\"\",\"\":\"\",\"\":\"UNKNOWN CORRELATION\",\"userId\":\"UNKNOWN USER\",\"moduleName\":\"\",\"\":\"a\",\"client\":\"AgentDesktop\",\"type\":\"application\",\"msg\":\"\",\"\":\"\"}{\"name\":\"\",\"level\":30,\"\":\"info\",\"time\":,\"host\":\"\",\"hostname\":\"\",\"\":\"\",\"clientCorrelationId\":\"\",\"userId\":\"UNKNOWN 
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;props.conf:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[your_sourcetype]
    BREAK_ONLY_BEFORE = (?m)\{\W*name
    SHOULD_LINEMERGE = true
    SEDCMD-backslash=s/\\//g
    DATETIME_CONFIG = CURRENT
    KV_MODE = json
    category = Structured
    NO_BINARY_CHECK = true
    TRUNCATE = 0
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Single line events (records with &lt;CODE&gt;name&lt;/CODE&gt; starting in new line):&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;{\"name\":\"\",\"\":,\"severity\":\"info\",\"time\":,\"host\":\"\",\"hostname\":\"\",\"\":\"\",\"\":\"UNKNOWN CORRELATION\",\"userId\":\"UNKNOWN USER\",\"moduleName\":\"\",\"\":\"a\",\"client\":\"AgentDesktop\",\"type\":\"application\",\"msg\":\"\",\"\":\"\"}
{\"name\":\"\",\"level\":30,\"\":\"info\",\"time\":,\"host\":\"\",\"hostname\":\"\",\"\":\"\",\"clientCorrelationId\":\"\",\"userId\":\"UNKNOWN 
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;props.conf:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[your_sourcetype]
    LINE_BREAKER = ([\r\n]+)\{\W*name
    SHOULD_LINEMERGE = false
    SEDCMD-backslash=s/\\//g
    DATETIME_CONFIG = CURRENT
    KV_MODE = json
    category = Structured
    NO_BINARY_CHECK = true
    TRUNCATE = 0
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;You can test regex for both &lt;CODE&gt;BREAK_ONLY_BEFORE&lt;/CODE&gt; and &lt;CODE&gt;LINE_BREAKER&lt;/CODE&gt; with their respective data samples &lt;A href="https://regex101.com/r/mzy7Qc/1"&gt;here&lt;/A&gt;.&lt;/P&gt;

&lt;P&gt;Also, in your configurations, you're using &lt;CODE&gt;INDEXED_EXTRACTIONS&lt;/CODE&gt; and &lt;CODE&gt;KV_MODE&lt;/CODE&gt; to extract json fields. This is not suggestible as this will extract fields twice, resulting in duplicate field values. Please have a look at below links and use any one setting which suits your need.&lt;/P&gt;

&lt;P&gt;&lt;A href="https://answers.splunk.com/answers/556279/why-would-indexed-extractionsjson-in-propsconf-be.html"&gt;https://answers.splunk.com/answers/556279/why-would-indexed-extractionsjson-in-propsconf-be.html&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;&lt;A href="https://www.hurricanelabs.com/blog/splunk-case-study-indexed-extractions-vs-search-time-extractions"&gt;https://www.hurricanelabs.com/blog/splunk-case-study-indexed-extractions-vs-search-time-extractions&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 11 Sep 2018 18:00:34 GMT</pubDate>
    <dc:creator>sudosplunk</dc:creator>
    <dc:date>2018-09-11T18:00:34Z</dc:date>
    <item>
      <title>Why does BREAK_ONLY_BEFORE work only for some events?</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Why-does-BREAK-ONLY-BEFORE-work-only-for-some-events/m-p/450664#M8160</link>
      <description>&lt;P&gt;I have applied regex in the heavy forwarders as below. But this works only for few events and a lot of events are not getting parsed with the regex in BREAK_ONLY_BEFORE.&lt;/P&gt;

&lt;P&gt;pulldown_type = 1&lt;BR /&gt;
SEDCMD-backslash=s/\//g&lt;BR /&gt;
TRUNCATE = 0&lt;BR /&gt;
BREAK_ONLY_BEFORE = {\”name\”&lt;BR /&gt;
DATETIME_CONFIG = CURRENT&lt;BR /&gt;
INDEXED_EXTRACTIONS = json&lt;BR /&gt;
KV_MODE = json&lt;BR /&gt;
category = Structured&lt;BR /&gt;
SHOULD_LINEMERGE = false&lt;BR /&gt;
NO_BINARY_CHECK = true&lt;/P&gt;

&lt;P&gt;Sample logs as below.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;{\"name\":\"\",\"\":,\"severity\":\"info\",\"time\":,\"host\":\"\",\"hostname\":\"\",\"\":\"\",\"\":\"UNKNOWN CORRELATION\",\"userId\":\"UNKNOWN USER\",\"moduleName\":\"\",\"\":\"a\",\"client\":\"AgentDesktop\",\"type\":\"application\",\"msg\":\"\",\"\":\"\"}{\"name\":\"\",\"level\":30,\"\":\"info\",\"time\":,\"host\":\"\",\"hostname\":\"\",\"\":\"\",\"clientCorrelationId\":\"\",\"userId\":\"UNKNOWN 
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;For some events the same stanza in heavy forwarder works, but for others, it does not work. Can someone let me know what could be wrong?&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 21:12:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Why-does-BREAK-ONLY-BEFORE-work-only-for-some-events/m-p/450664#M8160</guid>
      <dc:creator>Saaral</dc:creator>
      <dc:date>2020-09-29T21:12:03Z</dc:date>
    </item>
    <item>
      <title>Re: Why does BREAK_ONLY_BEFORE work only for some events?</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Why-does-BREAK-ONLY-BEFORE-work-only-for-some-events/m-p/450665#M8161</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;Your SHOULD_LINEMERGE value must be true. And I made small adjustment to your regex. Try below,&lt;/P&gt;

&lt;P&gt;props.conf:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;BREAK_ONLY_BEFORE = \{\W+name
SHOULD_LINEMERGE = true
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 06 Sep 2018 17:35:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Why-does-BREAK-ONLY-BEFORE-work-only-for-some-events/m-p/450665#M8161</guid>
      <dc:creator>sudosplunk</dc:creator>
      <dc:date>2018-09-06T17:35:17Z</dc:date>
    </item>
    <item>
      <title>Re: Why does BREAK_ONLY_BEFORE work only for some events?</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Why-does-BREAK-ONLY-BEFORE-work-only-for-some-events/m-p/450666#M8162</link>
      <description>&lt;P&gt;Thanks! But how my stanza worked for one event and it is not working for another event. Why it was not working for all the events with the same pattern? Also in the regex you provided, I want to break only at name and at the braces before that.Will this break the event at the field name?&lt;/P&gt;</description>
      <pubDate>Thu, 06 Sep 2018 18:14:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Why-does-BREAK-ONLY-BEFORE-work-only-for-some-events/m-p/450666#M8162</guid>
      <dc:creator>Saaral</dc:creator>
      <dc:date>2018-09-06T18:14:44Z</dc:date>
    </item>
    <item>
      <title>Re: Why does BREAK_ONLY_BEFORE work only for some events?</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Why-does-BREAK-ONLY-BEFORE-work-only-for-some-events/m-p/450667#M8163</link>
      <description>&lt;P&gt;I am not sure how it worked for the first event. Your regex did not match the event. Tested &lt;A href="https://regex101.com/r/BBcFki/1"&gt;here&lt;/A&gt;. The backslash before quotes must be escaped in order to match &lt;CODE&gt;\"&lt;/CODE&gt;.&lt;/P&gt;

&lt;P&gt;I updated my regex above. This will look for &lt;CODE&gt;{&lt;/CODE&gt; before &lt;CODE&gt;name&lt;/CODE&gt; &lt;/P&gt;</description>
      <pubDate>Thu, 06 Sep 2018 18:27:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Why-does-BREAK-ONLY-BEFORE-work-only-for-some-events/m-p/450667#M8163</guid>
      <dc:creator>sudosplunk</dc:creator>
      <dc:date>2018-09-06T18:27:50Z</dc:date>
    </item>
    <item>
      <title>Re: Why does BREAK_ONLY_BEFORE work only for some events?</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Why-does-BREAK-ONLY-BEFORE-work-only-for-some-events/m-p/450668#M8164</link>
      <description>&lt;P&gt;Hi Surya &lt;/P&gt;

&lt;P&gt;Thanks! I will try to implement it ! Also could you let me know what regex can be applied to the below log sample to break at the name field?&lt;/P&gt;

&lt;P&gt;{\"name\":\"\",\"level\":,\"severity\":\"info\",\"time&lt;/P&gt;</description>
      <pubDate>Fri, 07 Sep 2018 14:03:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Why-does-BREAK-ONLY-BEFORE-work-only-for-some-events/m-p/450668#M8164</guid>
      <dc:creator>Saaral</dc:creator>
      <dc:date>2018-09-07T14:03:27Z</dc:date>
    </item>
    <item>
      <title>Re: Why does BREAK_ONLY_BEFORE work only for some events?</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Why-does-BREAK-ONLY-BEFORE-work-only-for-some-events/m-p/450669#M8165</link>
      <description>&lt;P&gt;If events are multi-line, then try &lt;CODE&gt;(?m)\{\W+name&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;(?m)&lt;/CODE&gt; - multi-line modifier&lt;BR /&gt;
&lt;CODE&gt;\{&lt;/CODE&gt; - This will look for { literally.&lt;BR /&gt;
&lt;CODE&gt;\W+&lt;/CODE&gt; - This will match any number of non-word characters. If you're sure about the number of characters between &lt;CODE&gt;{&lt;/CODE&gt; and &lt;CODE&gt;name&lt;/CODE&gt;, then make use of quantifiers, for example, &lt;CODE&gt;\W{1,3}&lt;/CODE&gt; - this will look for minimum 1 and max 3 characters instead of looking for 1 and unlimited.&lt;BR /&gt;
&lt;CODE&gt;name&lt;/CODE&gt; - This will look for &lt;CODE&gt;name&lt;/CODE&gt; literally case-sensitive. &lt;/P&gt;

&lt;P&gt;Please refer to &lt;A href="https://regex101.com/r/eBxRzw/1" target="_blank"&gt;this page&lt;/A&gt; for more details. &lt;/P&gt;

&lt;P&gt;If events are not multi-line:&lt;/P&gt;

&lt;P&gt;I would suggest using &lt;CODE&gt;LINE_BREAKER&lt;/CODE&gt; instead of &lt;CODE&gt;BREAK_ONLY_BEFORE&lt;/CODE&gt; because, LINE_BREAKER will improve processing speed. If you would like to use LINE_BREAKER, then below are the configs,&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;LINE_BREAKER = ([\r\n]+)\{\W+name
SHOULD_LINEMERGE = false
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 29 Sep 2020 21:09:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Why-does-BREAK-ONLY-BEFORE-work-only-for-some-events/m-p/450669#M8165</guid>
      <dc:creator>sudosplunk</dc:creator>
      <dc:date>2020-09-29T21:09:54Z</dc:date>
    </item>
    <item>
      <title>Re: Why does BREAK_ONLY_BEFORE work only for some events?</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Why-does-BREAK-ONLY-BEFORE-work-only-for-some-events/m-p/450670#M8166</link>
      <description>&lt;P&gt;Hi Surya&lt;/P&gt;

&lt;P&gt;We tried most of all the suggestions that you provided but nothing looks to be working.Only few events are being parsed and most of the events are not.But the SED command that I am applying works for all the events.The Regex is not working for all the events.I have not used the LINe BREAKER though.Will it work ?&lt;/P&gt;</description>
      <pubDate>Tue, 11 Sep 2018 15:00:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Why-does-BREAK-ONLY-BEFORE-work-only-for-some-events/m-p/450670#M8166</guid>
      <dc:creator>Saaral</dc:creator>
      <dc:date>2018-09-11T15:00:32Z</dc:date>
    </item>
    <item>
      <title>Re: Why does BREAK_ONLY_BEFORE work only for some events?</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Why-does-BREAK-ONLY-BEFORE-work-only-for-some-events/m-p/450671#M8167</link>
      <description>&lt;P&gt;Okay, I see what you're doing. I will provide you two set of configs, one for multi line events; and another for single line events. Please apply these configs per your use case.&lt;/P&gt;

&lt;P&gt;Multi line events (records with &lt;CODE&gt;name&lt;/CODE&gt; starting in same line):&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;{\"name\":\"\",\"\":,\"severity\":\"info\",\"time\":,\"host\":\"\",\"hostname\":\"\",\"\":\"\",\"\":\"UNKNOWN CORRELATION\",\"userId\":\"UNKNOWN USER\",\"moduleName\":\"\",\"\":\"a\",\"client\":\"AgentDesktop\",\"type\":\"application\",\"msg\":\"\",\"\":\"\"}{\"name\":\"\",\"level\":30,\"\":\"info\",\"time\":,\"host\":\"\",\"hostname\":\"\",\"\":\"\",\"clientCorrelationId\":\"\",\"userId\":\"UNKNOWN 
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;props.conf:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[your_sourcetype]
    BREAK_ONLY_BEFORE = (?m)\{\W*name
    SHOULD_LINEMERGE = true
    SEDCMD-backslash=s/\\//g
    DATETIME_CONFIG = CURRENT
    KV_MODE = json
    category = Structured
    NO_BINARY_CHECK = true
    TRUNCATE = 0
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Single line events (records with &lt;CODE&gt;name&lt;/CODE&gt; starting in new line):&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;{\"name\":\"\",\"\":,\"severity\":\"info\",\"time\":,\"host\":\"\",\"hostname\":\"\",\"\":\"\",\"\":\"UNKNOWN CORRELATION\",\"userId\":\"UNKNOWN USER\",\"moduleName\":\"\",\"\":\"a\",\"client\":\"AgentDesktop\",\"type\":\"application\",\"msg\":\"\",\"\":\"\"}
{\"name\":\"\",\"level\":30,\"\":\"info\",\"time\":,\"host\":\"\",\"hostname\":\"\",\"\":\"\",\"clientCorrelationId\":\"\",\"userId\":\"UNKNOWN 
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;props.conf:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[your_sourcetype]
    LINE_BREAKER = ([\r\n]+)\{\W*name
    SHOULD_LINEMERGE = false
    SEDCMD-backslash=s/\\//g
    DATETIME_CONFIG = CURRENT
    KV_MODE = json
    category = Structured
    NO_BINARY_CHECK = true
    TRUNCATE = 0
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;You can test regex for both &lt;CODE&gt;BREAK_ONLY_BEFORE&lt;/CODE&gt; and &lt;CODE&gt;LINE_BREAKER&lt;/CODE&gt; with their respective data samples &lt;A href="https://regex101.com/r/mzy7Qc/1"&gt;here&lt;/A&gt;.&lt;/P&gt;

&lt;P&gt;Also, in your configurations, you're using &lt;CODE&gt;INDEXED_EXTRACTIONS&lt;/CODE&gt; and &lt;CODE&gt;KV_MODE&lt;/CODE&gt; to extract json fields. This is not suggestible as this will extract fields twice, resulting in duplicate field values. Please have a look at below links and use any one setting which suits your need.&lt;/P&gt;

&lt;P&gt;&lt;A href="https://answers.splunk.com/answers/556279/why-would-indexed-extractionsjson-in-propsconf-be.html"&gt;https://answers.splunk.com/answers/556279/why-would-indexed-extractionsjson-in-propsconf-be.html&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;&lt;A href="https://www.hurricanelabs.com/blog/splunk-case-study-indexed-extractions-vs-search-time-extractions"&gt;https://www.hurricanelabs.com/blog/splunk-case-study-indexed-extractions-vs-search-time-extractions&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Sep 2018 18:00:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Why-does-BREAK-ONLY-BEFORE-work-only-for-some-events/m-p/450671#M8167</guid>
      <dc:creator>sudosplunk</dc:creator>
      <dc:date>2018-09-11T18:00:34Z</dc:date>
    </item>
    <item>
      <title>Re: Why does BREAK_ONLY_BEFORE work only for some events?</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Why-does-BREAK-ONLY-BEFORE-work-only-for-some-events/m-p/450672#M8168</link>
      <description>&lt;P&gt;Hi Surya- The solution thatyou provided yesterday works only for the events starting with new line.For the events are merged in a single line,it does not work.Will the above stanza work for thos merged events within a single line too?&lt;/P&gt;</description>
      <pubDate>Tue, 11 Sep 2018 18:47:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Why-does-BREAK-ONLY-BEFORE-work-only-for-some-events/m-p/450672#M8168</guid>
      <dc:creator>Saaral</dc:creator>
      <dc:date>2018-09-11T18:47:14Z</dc:date>
    </item>
    <item>
      <title>Re: Why does BREAK_ONLY_BEFORE work only for some events?</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Why-does-BREAK-ONLY-BEFORE-work-only-for-some-events/m-p/450673#M8169</link>
      <description>&lt;P&gt;Yes. Use the 1st set of configs. I am not sure why it did not work the first time. Can you paste your full props.conf here which you're using right now. Please use "code generator" (the icon with 101010) for pasting content. &lt;/P&gt;</description>
      <pubDate>Tue, 11 Sep 2018 18:59:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Why-does-BREAK-ONLY-BEFORE-work-only-for-some-events/m-p/450673#M8169</guid>
      <dc:creator>sudosplunk</dc:creator>
      <dc:date>2018-09-11T18:59:08Z</dc:date>
    </item>
    <item>
      <title>Re: Why does BREAK_ONLY_BEFORE work only for some events?</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Why-does-BREAK-ONLY-BEFORE-work-only-for-some-events/m-p/450674#M8170</link>
      <description>&lt;PRE&gt;&lt;CODE&gt;[empath_app_log]
pulldown_type = 1
SEDCMD-backslash=s/\\//g
TRUNCATE = 0
BREAK_ONLY_BEFORE = \{\W+name
DATETIME_CONFIG = CURRENT
INDEXED_EXTRACTIONS = json
KV_MODE = json
category = Structured
SHOULD_LINEMERGE = true
NO_BINARY_CHECK = true
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 11 Sep 2018 19:05:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Why-does-BREAK-ONLY-BEFORE-work-only-for-some-events/m-p/450674#M8170</guid>
      <dc:creator>Saaral</dc:creator>
      <dc:date>2018-09-11T19:05:50Z</dc:date>
    </item>
    <item>
      <title>Re: Why does BREAK_ONLY_BEFORE work only for some events?</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Why-does-BREAK-ONLY-BEFORE-work-only-for-some-events/m-p/450675#M8171</link>
      <description>&lt;P&gt;This is what we deployed last night and only the events starting with newline is being parsed while the events merged together in single line is not being parsed.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Sep 2018 19:06:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Why-does-BREAK-ONLY-BEFORE-work-only-for-some-events/m-p/450675#M8171</guid>
      <dc:creator>Saaral</dc:creator>
      <dc:date>2018-09-11T19:06:21Z</dc:date>
    </item>
    <item>
      <title>Re: Why does BREAK_ONLY_BEFORE work only for some events?</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Why-does-BREAK-ONLY-BEFORE-work-only-for-some-events/m-p/450676#M8172</link>
      <description>&lt;PRE&gt;&lt;CODE&gt;{"name":"utterance.service logger","level":30,"severity":"info","time":"host":"","hostname":"","category":"application","clientCorrelationId":"","userId":"","moduleName":"DisplayUtterancesFsModule","source":"angular","client":"AgentDesktop","type":"application","msg":"utterance does not exist","logId":""}{"name":"utterance.service logger","level":30,"severity":"info","time":,"host":"","hostname":"","category":"application","clientCorrelationId":"","userId":"","moduleName":"","source":"angular","client":"AgentDesktop","type":"application","msg":"utterance does not exist","logId":""}
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 11 Sep 2018 19:08:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Why-does-BREAK-ONLY-BEFORE-work-only-for-some-events/m-p/450676#M8172</guid>
      <dc:creator>Saaral</dc:creator>
      <dc:date>2018-09-11T19:08:30Z</dc:date>
    </item>
    <item>
      <title>Re: Why does BREAK_ONLY_BEFORE work only for some events?</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Why-does-BREAK-ONLY-BEFORE-work-only-for-some-events/m-p/450677#M8173</link>
      <description>&lt;P&gt;Above the sample log that is not being parsed .I pulled it from the splunk UI&lt;/P&gt;</description>
      <pubDate>Tue, 11 Sep 2018 19:08:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Why-does-BREAK-ONLY-BEFORE-work-only-for-some-events/m-p/450677#M8173</guid>
      <dc:creator>Saaral</dc:creator>
      <dc:date>2018-09-11T19:08:55Z</dc:date>
    </item>
    <item>
      <title>Re: Why does BREAK_ONLY_BEFORE work only for some events?</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Why-does-BREAK-ONLY-BEFORE-work-only-for-some-events/m-p/450678#M8174</link>
      <description>&lt;P&gt;Thanks for the information. Please add &lt;CODE&gt;(?m)&lt;/CODE&gt; - multi-line modifier before &lt;CODE&gt;\{\W+name&lt;/CODE&gt;. This will make splunk to look at each line for &lt;CODE&gt;{"name&lt;/CODE&gt; string. &lt;/P&gt;</description>
      <pubDate>Tue, 11 Sep 2018 19:18:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Why-does-BREAK-ONLY-BEFORE-work-only-for-some-events/m-p/450678#M8174</guid>
      <dc:creator>sudosplunk</dc:creator>
      <dc:date>2018-09-11T19:18:31Z</dc:date>
    </item>
    <item>
      <title>Re: Why does BREAK_ONLY_BEFORE work only for some events?</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Why-does-BREAK-ONLY-BEFORE-work-only-for-some-events/m-p/450679#M8175</link>
      <description>&lt;P&gt;Oops! I applied that as well.Below is the one that is in the server and still not working as I expected.&lt;/P&gt;

&lt;P&gt;[empath_app_log]&lt;BR /&gt;
pulldown_type = 1&lt;BR /&gt;
SEDCMD-backslash=s/\//g&lt;BR /&gt;
TRUNCATE = 0&lt;BR /&gt;
BREAK_ONLY_BEFORE = (?m){\W+name&lt;BR /&gt;
DATETIME_CONFIG = CURRENT&lt;BR /&gt;
INDEXED_EXTRACTIONS = json&lt;BR /&gt;
KV_MODE = json&lt;BR /&gt;
category = Structured&lt;BR /&gt;
SHOULD_LINEMERGE = true&lt;BR /&gt;
NO_BINARY_CHECK = true&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 21:13:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Why-does-BREAK-ONLY-BEFORE-work-only-for-some-events/m-p/450679#M8175</guid>
      <dc:creator>Saaral</dc:creator>
      <dc:date>2020-09-29T21:13:38Z</dc:date>
    </item>
    <item>
      <title>Re: Why does BREAK_ONLY_BEFORE work only for some events?</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Why-does-BREAK-ONLY-BEFORE-work-only-for-some-events/m-p/450680#M8176</link>
      <description>&lt;P&gt;Hmm. Can you check if any other setting is taking precedence by running this command &lt;CODE&gt;splunk btool props list --debug | grep 'empath_app_log'&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;Do you mind walking me through your architecture. Data flow is from UF --&amp;gt; HF --&amp;gt; Indexer?&lt;/P&gt;</description>
      <pubDate>Tue, 11 Sep 2018 19:36:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Why-does-BREAK-ONLY-BEFORE-work-only-for-some-events/m-p/450680#M8176</guid>
      <dc:creator>sudosplunk</dc:creator>
      <dc:date>2018-09-11T19:36:08Z</dc:date>
    </item>
    <item>
      <title>Re: Why does BREAK_ONLY_BEFORE work only for some events?</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Why-does-BREAK-ONLY-BEFORE-work-only-for-some-events/m-p/450681#M8177</link>
      <description>&lt;P&gt;The Data flow is from Deployment server to the heavy forwarder to the indexers.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Sep 2018 19:51:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Why-does-BREAK-ONLY-BEFORE-work-only-for-some-events/m-p/450681#M8177</guid>
      <dc:creator>Saaral</dc:creator>
      <dc:date>2018-09-11T19:51:13Z</dc:date>
    </item>
    <item>
      <title>Re: Why does BREAK_ONLY_BEFORE work only for some events?</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Why-does-BREAK-ONLY-BEFORE-work-only-for-some-events/m-p/450682#M8178</link>
      <description>&lt;P&gt;Are you collecting logs from deployment server? In that case, please place the same props.conf along with your inputs.conf on DS as well. What was the output of btool command. Did you notice any conflicts? &lt;/P&gt;</description>
      <pubDate>Tue, 11 Sep 2018 20:10:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Why-does-BREAK-ONLY-BEFORE-work-only-for-some-events/m-p/450682#M8178</guid>
      <dc:creator>sudosplunk</dc:creator>
      <dc:date>2018-09-11T20:10:05Z</dc:date>
    </item>
    <item>
      <title>Re: Why does BREAK_ONLY_BEFORE work only for some events?</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Why-does-BREAK-ONLY-BEFORE-work-only-for-some-events/m-p/450683#M8179</link>
      <description>&lt;P&gt;I am unable to run that command.I dont have that previlege &lt;/P&gt;</description>
      <pubDate>Tue, 11 Sep 2018 20:12:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Why-does-BREAK-ONLY-BEFORE-work-only-for-some-events/m-p/450683#M8179</guid>
      <dc:creator>Saaral</dc:creator>
      <dc:date>2018-09-11T20:12:24Z</dc:date>
    </item>
  </channel>
</rss>

