I think it&#39;s more related to the time spent by smokeping to do his Job. When my ISP failed, a lot of Targets were unresponsive..<br><br> FPing: WARNING: smokeping took 493 seconds to complete 1 round of polling. It should complete polling in 300 seconds..<br>
 You may have unresponsive devices in your setup.<br><br>Is it possible ?   I just see one line for this alarm in my smokeping logs but on my graphs, i see a blank for 1 or 2 hours...<br>So far, I have 94 targets which are using the Fping probes. Do I need to reduce the offset ?<br>
<br>Best Regards,<br><br>Nicolas.<br><br><div class="gmail_quote">2012/8/6 G.W. Haywood <span dir="ltr">&lt;<a href="mailto:ged@jubileegroup.co.uk" target="_blank">ged@jubileegroup.co.uk</a>&gt;</span><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
B11;rgb:ffff/ffff/ffffHi there,<div class="im"><br>
<br>
On Mon, 6 Aug 2012, Nicolas KARP wrote:<br>
<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
I ran several smokeping for several months now and all was fine until we<br>
had an issue with our ISP... Following these issues, smokeping sent a lot<br>
of alarms which is what we wanted :-) But after that, smokeping stopped to<br>
update the RRD file and the graphs were not updated.<br>
<br>
Do you know what could cause this problem with smokeping ?  Too much<br>
unresponsive devices ?<br>
</blockquote>
<br></div>
Are you by any chance using logarithmic graphs?<br>
<br>
I&#39;ve seem Smokeping fail to update graphs (and the smokeping processes<br>
hanging using 100% CPU) when using logarithmic graphs.  I have a patch<br>
which has been in testing for a week but seems stable enough to release.<br>
<br>
The problem I had was that sometimes when you use logarithmic graphs the<br>
minimum for the vertical scale is greater than the maximum, and this<br>
causes something in RRD to get confused.<br>
<br>
My fix is to make sure that the minimum is less than the maximum, but it<br>
seems to me that a fix is also needed in RRD for the problem behaviour.<br>
<br>
In Smokeping.pm:<br>
------------------------------<u></u>------------------------------<u></u>----------<br>
  &#39;--title&#39;,$desc.$from,<br>
  &#39;--rigid&#39;,<br>
! &#39;--upper-limit&#39;, ($max-&gt;{$s}{$start} &gt; 0.01 ? $max-&gt;{$s}{$start} : &#39;0.01&#39;),<br>
  @log,<br>
  &#39;--lower-limit&#39;,(@log ? ($max-&gt;{$s}{$start} &gt; 0.01) ? &#39;0.001&#39; : &#39;0.0001&#39; : &#39;0&#39;),<br>
--- 1371,1377 ----<br>
  &#39;--title&#39;,$desc.$from,<br>
  &#39;--rigid&#39;,<br>
! &#39;--upper-limit&#39;, $max-&gt;{$s}{$start},<br>
  @log,<br>
  &#39;--lower-limit&#39;,(@log ? ($max-&gt;{$s}{$start} &gt; 0.01) ? &#39;0.001&#39; : &#39;0.0001&#39; : &#39;0&#39;),<br>
------------------------------<u></u>------------------------------<u></u>----------<br>
<br>
Apologies for any line wrapping.<br>
<br>
--<br>
<br>
73,<br>
Ged.<br>
</blockquote></div><br>