<div dir="ltr">Balazs, I hope you can answer the following questions:<div>1. Is that formula correct?<br><div style><b>SUM(`syslog-ng-ctl stats | grep source | grep processed`) == SUM(`syslog-ng-ctl stats | grep source | grep processed`)</b></div>

<div style><br></div><div style>If I&#39;m not dropping any messages by &#39;flags(final)&#39; without sending to any destination and also I&#39;m not sending the same logs to multiple destinations.</div><div style><br></div>

<div style>Where SUM - summarize messages count in each line.</div><div style><br></div><div style>2. I don&#39;t need &#39;dst.name...&#39; and &#39;src.name...&#39; to get the summ, right?</div><div style>Destination = dst.name1 + dst.name2 + ..., is that correct?</div>

<div style><br></div><div style>3. What should I check if I see more &#39;source&#39; processed messages than &#39;destination&#39; and there are no dropped messages?</div><div style><br></div><div style>4. What other global things is it good to monitor using syslog stats?</div>

<div style>Are there are any methods to see if syslog-ng has stopped reading the source?</div><div style><br></div><div style>For now I&#39;m going to monitor:</div><div style>1. Message/per second rate - alert if it decreased significantly</div>

<div style>2. The number of stored messages - alert if the queue is always full (log_fifo_size)</div><div style>3. The number of dropped messages</div><div style>4. Timestamps of the latest message - alert if the timestamp is tool old.</div>

<div style>... any other ideas?</div></div><div style><br></div><div style><br></div></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Fri, Dec 28, 2012 at 12:57 PM, Anton Koldaev <span dir="ltr">&lt;<a href="mailto:koldaevav@gmail.com" target="_blank">koldaevav@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"><div dir="ltr">Thanks Balazs for the explanation.<div>Looks like they all are not very important for me to monitor.</div>

</div><div class="HOEnZb"><div class="h5"><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>----- 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>&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>
<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>&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>&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>&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>&gt; &gt; received from every configured sources.
<br></div>&gt; &gt; ****
<br>&gt; &gt; 
<br>&gt; &gt; ** **
<br><div>&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>&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>
</div></div></blockquote></div><br><br clear="all"><div><br></div>-- <br>Best regards,<br>Koldaev Anton
</div>