<div dir="ltr">Thanks Balazs for the explanation.<div style>Looks like they all are not very important for me to monitor.</div></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Fri, Dec 28, 2012 at 9:44 AM, Balazs Scheidler <span dir="ltr">&lt;<a href="mailto:bazsi77@gmail.com" target="_blank">bazsi77@gmail.com</a>&gt;</span> wrote:<br>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><u></u>

    
    
    
<div>
<p></p><div class="im">----- Original message -----
<br>&gt; Thanks Daniel. I&#39;m already using &quot;syslog-ng-ctl stats&quot; with different
<br>&gt; stats levels. I&#39;m just confused with &quot;center()&quot;:
<br></div>&gt; *% sudo syslog-ng-ctl stats | grep center
<br>&gt; 
<br>&gt;                           *
<br>&gt; *center;;received;a;processed;0*
<br>&gt; *center;;queued;a;processed;0*
<br>
<br>center has been broken since 3.2, because there&#39;s no &#39;center&#39; anymore.  IIRC I have removed that counter since then. If there&#39;s a usecase for center I may give a thought how to revive it.
<br>
<br>&gt; *
<br>&gt; *
<br><div class="im">&gt; Also maybe balabit guys are able to give us some information on global
<br>&gt; stats:
<br></div>&gt; *% sudo syslog-ng-ctl stats | grep global *
<br>&gt; *global;sdata_updates;;a;processed;0*
<br>
<br>this one counts the number of &#39;slow&#39; updates to structured data entries during processing. being zero means that you basically never add sdata, but either not change it at all, or only change entries that are already present.
<br>
<br>&gt; *global;payload_reallocs;;a;processed;760*
<br>
<br>this counts the number of reallocs of the message payload. syslog-ng sizes the allocated buffer with a simple heuristics in the hope that parsing, rewrite rules will not cause it to grow. in your case syslog-ng had to do a realloc for 760 messages. if this happens to be close to all messages you processed, it&#39;s the cause for performance degradation.
<br>
<br>if it&#39;s a minority then you probably don&#39;t have to care.
<br>
<br>if the first one is true, I&#39;d like to know about it.
<br>
<br>right now the alllocated size is twice the length of the incoming message.
<br>
<br>
<br>&gt; *global;msg_clones;;a;processed;0*
<br>&gt; 
<br>
<br>again a performance monitoring counter, that tracks the number of clone operations.
<br><div class="im">
<br>&gt; 
<br>&gt; On Thu, Dec 27, 2012 at 6:07 PM, Daniel Neubacher
<br>&gt; &lt;<a href="mailto:daniel.neubacher@xing.com" target="_blank">daniel.neubacher@xing.com</a>
<br>&gt; &gt; wrote:
<br>&gt; 
<br>&gt; &gt; I guess u need „syslog-ng-ctl stats”.   But u need to configure
<br></div>&gt; &gt; “stats_level(2);” in your options to get this running nicely.****
<br><div class="im">&gt; &gt; 
<br>&gt; &gt; And if you want to get logs per second I’ve attached my little bash
<br></div>&gt; &gt; script: ****
<br>&gt; &gt; 
<br>&gt; &gt; #!/bin/bash****
<br>&gt; &gt; 
<br>&gt; &gt; ** **
<br>&gt; &gt; 
<br>&gt; &gt; while true****
<br>&gt; &gt; 
<br>&gt; &gt; do ****
<br><div class="im">&gt; &gt; 
<br>&gt; &gt; for i in $(syslog-ng-ctl stats | grep src.tcp | grep proc |
<br></div>&gt; &gt; cut -d &quot;;&quot; -f6) ****
<br>&gt; &gt; 
<br>&gt; &gt; do ****
<br>&gt; &gt; 
<br>&gt; &gt; let tc1+=$i ****
<br>&gt; &gt; 
<br>&gt; &gt; done ****
<br>&gt; &gt; 
<br>&gt; &gt; let lps=tc1-tc2****
<br>&gt; &gt; 
<br>&gt; &gt; test -z $tc2 || echo $lps****
<br>&gt; &gt; 
<br>&gt; &gt; tc2=$tc1****
<br>&gt; &gt; 
<br>&gt; &gt; tc1=0****
<br>&gt; &gt; 
<br>&gt; &gt; sleep 1****
<br>&gt; &gt; 
<br>&gt; &gt; done****
<br>&gt; &gt; 
<br>&gt; &gt; ** **
<br>&gt; &gt; 
<br>&gt; &gt; *Von:* <a href="mailto:syslog-ng-bounces@lists.balabit.hu" target="_blank">syslog-ng-bounces@lists.balabit.hu</a> [mailto:
<br>&gt; &gt; <a href="mailto:syslog-ng-bounces@lists.balabit.hu" target="_blank">syslog-ng-bounces@lists.balabit.hu</a>] *Im Auftrag von *Anton Koldaev
<br>&gt; &gt; *Gesendet:* Donnerstag, 27. Dezember 2012 10:18
<br>&gt; &gt; *An:* Syslog-ng users&#39; and developers&#39; mailing list
<br>&gt; &gt; *Betreff:* [syslog-ng] Statistics summary****
<br>&gt; &gt; 
<br>&gt; &gt; ** **
<br><div class="im">&gt; &gt; 
<br>&gt; &gt; Is there a nice way to get total numbers of processed/stored/dropped
<br></div>&gt; &gt; messages in syslog-ng v3.3?****
<br>&gt; &gt; 
<br>&gt; &gt; ** **
<br>&gt; &gt; 
<br>&gt; &gt; From docs:****
<br>&gt; &gt; 
<br>&gt; &gt; &gt; The *center(received)* entry shows the total number of messages
<br><div class="im">&gt; &gt; received from every configured sources.
<br></div>&gt; &gt; ****
<br>&gt; &gt; 
<br>&gt; &gt; ** **
<br><div class="im">&gt; &gt; 
<br>&gt; &gt; But in my stats center() shows zero almost for every host. I see zero
<br></div>&gt; &gt; in some other examples in docs too.****
<br>&gt; &gt; 
<br>&gt; &gt; ** **
<br>&gt; &gt; 
<br>&gt; &gt; --
<br>&gt; &gt; Best regards,
<br>&gt; &gt; Koldaev Anton ****
<br><div class="im">&gt; &gt; 
<br>&gt; &gt; 
<br>&gt; &gt; ______________________________________________________________________________
<br>&gt; &gt; Member info: <a href="https://lists.balabit.hu/mailman/listinfo/syslog-ng" target="_blank">https://lists.balabit.hu/mailman/listinfo/syslog-ng</a>
<br>&gt; &gt; Documentation:
<br>&gt; &gt; <a href="http://www.balabit.com/support/documentation/?product=syslog-ng" target="_blank">http://www.balabit.com/support/documentation/?product=syslog-ng</a>
<br>&gt; &gt; FAQ: <a href="http://www.balabit.com/wiki/syslog-ng-faq" target="_blank">http://www.balabit.com/wiki/syslog-ng-faq</a>
<br>&gt; &gt; 
<br>&gt; &gt; 
<br>&gt; &gt; 
<br>&gt; 
<br>&gt; 
<br>&gt; -- 
<br>&gt; Best regards,
<br>&gt; Koldaev Anton
<br><br></div><p></p>
</div>

</blockquote></div><br><br clear="all"><div><br></div>-- <br>Best regards,<br>Koldaev Anton
</div>