<p dir="ltr"><br>
On Feb 28, 2014 10:59 PM, &quot;Jesse Bowling&quot; &lt;<a href="mailto:jessebowling@gmail.com">jessebowling@gmail.com</a>&gt; wrote:<br>
&gt;<br>
&gt; Hello,<br>
&gt;<br>
&gt; I&#39;m running into an issue where we&#39;re fairly certain that we&#39;re dropping log messages somewhere along this path:<br>
&gt;<br>
&gt; device -&gt; network -&gt; VMware -&gt; RHEL host -&gt; syslog-ng<br>
&gt;<br>
&gt; What I&#39;d like to understand better is what statistics I can gather from syslog-ng itself to help show or rule out drops in the software. I&#39;m using the following general config:<br>
&gt;<br>
&gt; syslog-ng 3.2.5<br>
&gt; Installer-Version: 3.2.5<br>
&gt; Revision: ssh+git://bazsi@git.balabit//var/scm/git/syslog-ng/syslog-ng-ose--mainline--3.2#master#9d4bea28198bd731df1a61e980a2af5b88d81116<br>
&gt; Compile-Date: Jan 15 2012 19:47:30<br>
&gt; Enable-Threads: on<br>
&gt; Enable-Debug: off<br>
&gt; Enable-GProf: off<br>
&gt; Enable-Memtrace: off<br>
&gt; Enable-Sun-STREAMS: off<br>
&gt; Enable-IPv6: on<br>
&gt; Enable-Spoof-Source: on<br>
&gt; Enable-TCP-Wrapper: on<br>
&gt; Enable-SSL: off<br>
&gt; Enable-SQL: on<br>
&gt; Enable-Linux-Caps: off<br>
&gt; Enable-Pcre: on<br>
&gt; Enable-Pacct: off<br>
&gt;<br>
&gt; options {<br>
&gt;         flush_lines (100);<br>
&gt;         time_reopen (2);<br>
&gt;         log_iw_size(100);<br>
&gt;         log_fifo_size (65536);<br>
&gt;         log_msg_size(8192);<br>
&gt;         long_hostnames (off);<br>
&gt;         use_dns(yes);<br>
&gt;         use_fqdn(yes);<br>
&gt;         keep_hostname (no);<br>
&gt;         stats_freq(3600);<br>
&gt;         stats_level(1);<br>
&gt;         dns_cache(yes);<br>
&gt;         keep_timestamp(no);<br>
&gt; };<br>
&gt;<br>
&gt; When I looked at &quot;syslog-ng-ctl stats&quot; I see these &quot;types&quot;<br>
&gt;<br>
&gt; dropped<br>
&gt; processed<br>
&gt; stamp<br>
&gt; stored<br>
&gt;<br>
&gt; However I only see &quot;dropped&quot; counters for tcp destinations, and not for any of the sources or local destinations. <br></p>
<p dir="ltr">Dropped is defined for destinations only. Sources never drop messages.</p>
<p dir="ltr">What do you mean on &#39;local destinations&#39;?</p>
<p dir="ltr">What happens is that sources dispatch incoming messages to all configured destinations. Destinations keep a queue of messages that are being sent.</p>
<p dir="ltr">If the destination queue is full, new messages get dropped, but this should only happen if the destination is slower and flow control is not enabled on the specific path.</p>
<p dir="ltr">You can increase the queue size with the log-fifo-size option.</p>
<p dir="ltr">You can enable flow control using flags(flow-control) within the log statement.</p>
<p dir="ltr">&gt; Does &quot;dropped&quot; only make sense in the remote destination case? Is there anything I can turn on/examine to tune my syslog-ng performance and verify whether I have drops occurring within syslog-ng?<br>

&gt;<br>
&gt; For the RHEL host portion I&#39;ve tried watching netstat -su and netstat -st but the error counters for those do not seem to indicate that the level of issue we&#39;re seeing lies there. The processor for syslog-ng is busy, but averages 75%...<br>

&gt;<br>
&gt; Is it foolish to expect VMware to keep up with the level of logs we&#39;re taking in? Might virtualization be hiding drops from me?</p>
<p dir="ltr">It depends on how much logs you have.</p>
<p dir="ltr">UDP is a tricky beast with a number of drop points both within and outside syslog-ng.</p>
<p dir="ltr">Syslog-ng is able to process hundreds of thousands of messages in some use cases. With udp the biggest issue is dropping packets in the kernel receive queue, but you can scale that to 20-30k msg per second.</p>

<p dir="ltr">&gt;<br>
&gt; Any help appreciated...<br>
&gt;<br>
&gt; Cheers,<br>
&gt;<br>
&gt; Jesse<br>
&gt;<br>
&gt; -- <br>
&gt; Jesse Bowling<br>
&gt;<br>
&gt;<br>
&gt; ______________________________________________________________________________<br>
&gt; Member info: <a href="https://lists.balabit.hu/mailman/listinfo/syslog-ng">https://lists.balabit.hu/mailman/listinfo/syslog-ng</a><br>
&gt; Documentation: <a href="http://www.balabit.com/support/documentation/?product=syslog-ng">http://www.balabit.com/support/documentation/?product=syslog-ng</a><br>
&gt; FAQ: <a href="http://www.balabit.com/wiki/syslog-ng-faq">http://www.balabit.com/wiki/syslog-ng-faq</a><br>
&gt;<br>
&gt;<br>
</p>