<p dir="ltr"><br>
On May 7, 2013 11:37 PM, &quot;Xuri Nagarin&quot; &lt;<a href="mailto:secsubs@gmail.com">secsubs@gmail.com</a>&gt; wrote:<br>
&gt;<br>
&gt; Hi,<br>
&gt;<br>
&gt; I have a syslog-ng server that does not seem to receive well over TCP.<br>
&gt; Instead of an expected ~150 Mbits/s, I get a trickle of few events/sec.<br>
&gt; The setup is: Server L is an ArcSight Logger that streams out events<br>
&gt; over TCP or UDP. Server X is a test Syslog-ng VM that is running 3.2.5<br>
&gt; (from EPEL). Server P is running Syslog-NG 3.2.5 built from EPEL srpms<br>
&gt; with TLS enabled.<br>
&gt;<br>
&gt; L -&gt; X over UDP Port 514, I get ~100 Mbit/sec<br>
&gt; L -&gt; X over TCP Port 514, I get ~150 Mbit/sec<br>
&gt;<br>
&gt; L-&gt; P over UDP Port 514, I get ~100 Mbit/sec<br>
&gt; L-&gt; P over TCP Port 514, I get almost nothing. Just a few tens of events<br>
&gt; make it through over a half hour period.<br>
&gt;</p>
<p dir="ltr">I have a guess but that should only happen with 3.3 or later and should at least display a warning message at startup.</p>
<p dir="ltr">Stating with 3.3 the flow control window calculation has changed. Syslog-ng divides the window for each potential connection upfront.</p>
<p dir="ltr">You have max-connection set to 100 and log-iw-size defaults to 1000, which means that syslog-ng allocates 10 to each connection which is somewhat low in threaded mode.</p>
<p dir="ltr">Now as I think of it If you are really using 3.2 another issue may be the cause, is there another client that sends a lot of traffic parallel to logger? One source may starve the other. That&#39;s why the window allocation was changed.</p>

<p dir="ltr">In any case try to increase that and see if it helps.</p>
<p dir="ltr">&gt;  From L, I relay the same data over and over so there isn&#39;t an issue<br>
&gt; with what&#39;s being streamed.<br>
&gt;<br>
&gt; Config on X and P is identical and very basic:<br>
&gt; -----------------------------------------------------<br>
&gt; options {<br>
&gt;         time_reopen (10);<br>
&gt;         long_hostnames (off);<br>
&gt;         use_dns (no);<br>
&gt;         use_fqdn (no);<br>
&gt;         create_dirs (yes);<br>
&gt;         keep_hostname (yes);<br>
&gt;          keep_timestamp(yes);<br>
&gt;         log_fifo_size (1000);<br>
&gt;          stats_freq(60);<br>
&gt;          flush_timeout(10000);<br>
&gt;          log_fetch_limit(100);<br>
&gt;          flush_lines(100);<br>
&gt;          log_iw_size(100);<br>
&gt; };<br>
&gt;<br>
&gt; source s_tcp {<br>
&gt;          tcp( port(514) max-connections(100) );<br>
&gt; };<br>
&gt;<br>
&gt; source s_udp {<br>
&gt;          udp( port(514));<br>
&gt; };<br>
&gt;<br>
&gt; destination d_tcp { file(&quot;/var/log/tcp/$HOST-$YEAR-$MONTH-$DAY-$HOUR&quot;); };<br>
&gt; destination d_udp { file(&quot;/var/log/udp/$HOST-$YEAR-$MONTH-$DAY-$HOUR&quot;); };<br>
&gt; -----------------------------------------------------<br>
&gt;<br>
&gt;<br>
&gt; L -&gt; X over TCP, L opens one TCP connections and everything comes over it.<br>
&gt; L -&gt; P over TCP, L keeps opening up connections with P but no data comes<br>
&gt; over those connections or very few events come over those connections.<br>
&gt;<br>
&gt; I am going to investigate if there are any network QoS rules in place<br>
&gt; between L and P but wondering if there might be something in Syslog-NG<br>
&gt; that might be broken. I ran syslog-ng in debug mode but saw no errors. I<br>
&gt; looked at the pcap captures between L and P and saw no errors.<br>
&gt;<br>
&gt; Any other clues/ideas for troubleshooting are welcome.<br>
&gt;<br>
&gt; TIA!<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>
</p>