<?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: Events not appearing in All Apps and Add-ons</title>
    <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Events-not-appearing/m-p/498079#M61285</link>
    <description>&lt;P&gt;Hi all, after going through the splunkd.log and I saw a few entries that indicated the LINE_BREAKER entry in props.conf wasn't working right.&lt;/P&gt;

&lt;P&gt;LineBreakingProcessor - Truncating line because limit of 99999 bytes has been exceeded with a line length &amp;gt;= 100063&lt;/P&gt;

&lt;P&gt;I tried a few variations of LINE_BREAKER in props.conf and ultimately got it to work.  I ended up changing&lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;LINE_BREAKER = ([\n\r]+)date=\d{4}\-\d{2}\-\d{2}&lt;/CODE&gt;    &lt;/P&gt;

&lt;P&gt;To&lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;LINE_BREAKER = ([\n\r]+)&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;I also reverted the previous changes I had tried with TRANSFORMS back to their default values and things still seemed to work with this new LINE_BREAKER.   ¯\&lt;EM&gt;(ツ)&lt;/EM&gt;/¯&lt;/P&gt;

&lt;P&gt;Thanks to all that replied with suggestions.&lt;/P&gt;

&lt;P&gt;*edit: code blocks&lt;/P&gt;</description>
    <pubDate>Wed, 30 Sep 2020 02:31:27 GMT</pubDate>
    <dc:creator>chriswong187</dc:creator>
    <dc:date>2020-09-30T02:31:27Z</dc:date>
    <item>
      <title>Events not appearing</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Events-not-appearing/m-p/498073#M61279</link>
      <description>&lt;P&gt;I configured the sourcetype to fml:log according to the details but no events appear.&lt;BR /&gt;&lt;BR /&gt;
When the sourcetype is changed to syslog events start to appear.&lt;BR /&gt;&lt;BR /&gt;
Switching back to fml:log stops events again.  Any ideas?&lt;/P&gt;</description>
      <pubDate>Fri, 04 Oct 2019 14:00:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Events-not-appearing/m-p/498073#M61279</guid>
      <dc:creator>chriswong187</dc:creator>
      <dc:date>2019-10-04T14:00:26Z</dc:date>
    </item>
    <item>
      <title>Re: Events not appearing</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Events-not-appearing/m-p/498074#M61280</link>
      <description>&lt;P&gt;@chriswong187  looks like you have to make some tweaks to bypass syslog(in built splunk sourcetype) parsing according to your requirements..&lt;/P&gt;

&lt;P&gt;Check this out....&lt;BR /&gt;
&lt;A href="https://www.splunk.com/blog/2008/04/16/overriding-default-syslog-host-extraction.html"&gt;https://www.splunk.com/blog/2008/04/16/overriding-default-syslog-host-extraction.html&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;Check your props/transforms with btool..&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;$SPLUNK_HOME/bin/splunk cmd btool props list --debug syslog
$SPLUNK_HOME/bin/splunk cmd btool props list --debug fml:log
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 04 Oct 2019 15:51:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Events-not-appearing/m-p/498074#M61280</guid>
      <dc:creator>prakash007</dc:creator>
      <dc:date>2019-10-04T15:51:24Z</dc:date>
    </item>
    <item>
      <title>Re: Events not appearing</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Events-not-appearing/m-p/498075#M61281</link>
      <description>&lt;P&gt;Thanks for pointing me to the article.  I took some steps to correct everything based on the article but it didn't seem to work, unless i overlooked something.  Here's some info on what I found: &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;PS C:\Program Files\Splunk\bin&amp;gt; splunk cmd btool props list --debug syslog
C:\Program Files\Splunk\etc\system\default\props.conf            TRANSFORMS = syslog-host

PS C:\Program Files\Splunk\bin&amp;gt; splunk cmd btool props list --debug fml:log
C:\Program Files\Splunk\etc\apps\Splunk_TA_fortimail\local\props.conf   TRANSFORMS = 
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I modified the fortimail props.conf to include this: &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;TRANSFORMS = fortimail
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;And included this in the transforms.conf:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[fortimail]
DEST_KEY = MetaData:Host
REGEX = .
FORMAT = host::host.fqdn host::host2.fqdn
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 07 Oct 2019 14:13:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Events-not-appearing/m-p/498075#M61281</guid>
      <dc:creator>chriswong187</dc:creator>
      <dc:date>2019-10-07T14:13:23Z</dc:date>
    </item>
    <item>
      <title>Re: Events not appearing</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Events-not-appearing/m-p/498076#M61282</link>
      <description>&lt;P&gt;which splunk instance you have this configs deployed..?? heavy forwarder or indexer..??&lt;/P&gt;</description>
      <pubDate>Mon, 07 Oct 2019 14:17:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Events-not-appearing/m-p/498076#M61282</guid>
      <dc:creator>prakash007</dc:creator>
      <dc:date>2019-10-07T14:17:46Z</dc:date>
    </item>
    <item>
      <title>Re: Events not appearing</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Events-not-appearing/m-p/498077#M61283</link>
      <description>&lt;P&gt;Indexer only, I have a single server deployment.&lt;/P&gt;</description>
      <pubDate>Mon, 07 Oct 2019 14:31:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Events-not-appearing/m-p/498077#M61283</guid>
      <dc:creator>chriswong187</dc:creator>
      <dc:date>2019-10-07T14:31:22Z</dc:date>
    </item>
    <item>
      <title>Re: Events not appearing</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Events-not-appearing/m-p/498078#M61284</link>
      <description>&lt;P&gt;Hi Chris, &lt;BR /&gt;
one thing we can do is to go to Splunk UI&lt;/P&gt;

&lt;BLOCKQUOTE&gt;
&lt;P&gt;Settings &amp;gt; Sourcetypes &amp;gt; select syslog &amp;gt; advanced settings &lt;BR /&gt;
Copy the settings and create a new sourcetype with the same settings and then use it. &lt;BR /&gt;
It should have it resolved.&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;</description>
      <pubDate>Mon, 07 Oct 2019 20:59:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Events-not-appearing/m-p/498078#M61284</guid>
      <dc:creator>pruthvikrishnap</dc:creator>
      <dc:date>2019-10-07T20:59:34Z</dc:date>
    </item>
    <item>
      <title>Re: Events not appearing</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Events-not-appearing/m-p/498079#M61285</link>
      <description>&lt;P&gt;Hi all, after going through the splunkd.log and I saw a few entries that indicated the LINE_BREAKER entry in props.conf wasn't working right.&lt;/P&gt;

&lt;P&gt;LineBreakingProcessor - Truncating line because limit of 99999 bytes has been exceeded with a line length &amp;gt;= 100063&lt;/P&gt;

&lt;P&gt;I tried a few variations of LINE_BREAKER in props.conf and ultimately got it to work.  I ended up changing&lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;LINE_BREAKER = ([\n\r]+)date=\d{4}\-\d{2}\-\d{2}&lt;/CODE&gt;    &lt;/P&gt;

&lt;P&gt;To&lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;LINE_BREAKER = ([\n\r]+)&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;I also reverted the previous changes I had tried with TRANSFORMS back to their default values and things still seemed to work with this new LINE_BREAKER.   ¯\&lt;EM&gt;(ツ)&lt;/EM&gt;/¯&lt;/P&gt;

&lt;P&gt;Thanks to all that replied with suggestions.&lt;/P&gt;

&lt;P&gt;*edit: code blocks&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 02:31:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Events-not-appearing/m-p/498079#M61285</guid>
      <dc:creator>chriswong187</dc:creator>
      <dc:date>2020-09-30T02:31:27Z</dc:date>
    </item>
    <item>
      <title>Re: Events not appearing</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Events-not-appearing/m-p/498080#M61286</link>
      <description>&lt;P&gt;Come back and click &lt;CODE&gt;Accept&lt;/CODE&gt; on your answer to close your question.&lt;/P&gt;</description>
      <pubDate>Sun, 13 Oct 2019 06:30:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Events-not-appearing/m-p/498080#M61286</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2019-10-13T06:30:17Z</dc:date>
    </item>
  </channel>
</rss>

