<body leftmargin="0" marginwidth="0" topmargin="0" marginheight="0" offset="0" bgcolor='#FFFFFF' ><!-- This is a notification from the Help Desk. -->

<STYLE>
 a { color:#FF6600;}
</STYLE>
<table width="550" cellpadding="20" cellspacing="0" bgcolor="#FFFFFF">
<tr>
<td bgcolor="#FFFFFF" valign="top" style="font-size:12px;color:#000000;font-family:trebuchet ms;">
  
  
  <p style="font-weight:bold"></p>
  

  

  <i style="color:#555555; font-size:11px">On Nov 12, 2013 @ 05:32 pm, smokeping-users-request@lists.oetiker.ch wrote:</i>
  <p>Send smokeping-users mailing list submissions to<br />        smokeping-users@lists.oetiker.ch<br /><br />To subscribe or unsubscribe via the World Wide Web, visit<br />        https://lists.oetiker.ch/cgi-bin/listinfo/smokeping-users<br />or, via email, send a message with subject or body 'help' to<br />        smokeping-users-request@lists.oetiker.ch<br /><br />You can reach the person managing the list at<br />        smokeping-users-owner@lists.oetiker.ch<br /><br />When replying, please edit your Subject line so it is more specific<br />than &quot;Re: Contents of smokeping-users digest...&quot;<br /><br /><br />Today's Topics:<br /><br />   1. 12 secondes to show a page on smokeping ? (Artiflo)<br />   2. Re: 12 secondes to show a page on smokeping ? (Steve Wray)<br />   3. Re: 12 secondes to show a page on smokeping ? (Artiflo)<br />   4. Problem finding the HTDocs file (Will Brocklebank)<br />   5. Re: Problem finding the HTDocs file (Alessandro Palermo)<br /><br /><br />--------------------
 --------------------------------------------------<br /><br />Message: 1<br />Date: Mon, 23 Sep 2013 12:56:05 +0200<br />From: Artiflo &lt;artiflo@gmail.com&gt;<br />Subject: [smokeping-users] 12 secondes to show a page on smokeping ?<br />To: smokeping-users@lists.oetiker.ch<br />Message-ID:<br />        &lt;CAKH3hriPXKR362OTnqPP8bYMzENGrp841KQO+c1Zk+9vUbL3VA@mail.gmail.com&gt;<br />Content-Type: text/plain; charset=&quot;utf-8&quot;<br /><br />Hello,<br /><br />On smokeping 2.6.8, I have 2600 devices on 90 FPING probe.<br /><br />Each time I try to show a page or when I click on menu that took ~12<br />secondes !!!<br /><br />Why is so long ?<br /><br />(0.5 load on 4 XEON server)<br /><br /># time /usr/local/smokeping/bin/smokeping_cgi<br />/usr/local/smokeping/etc/config<br />real    0m12.763s<br />user    0m11.519s<br />sys     0m0.710s<br /><br /># cat /usr/local/smokeping/bin/smokeping_cgi<br /><br />#!/usr/bin/perl<br /># -*-perl-*-<br /><br />use strict;<br />use warnings;
 <br /><br />use FindBin;<br />use lib qw(); # PERL5LIB<br />use lib &quot;$FindBin::Bin/../thirdparty/lib/perl5&quot;;<br />use lib &quot;$FindBin::Bin/../lib&quot;;<br /><br /># don't bother with zombies<br />$SIG{CHLD} = 'IGNORE';<br /><br />use CGI::Carp qw(fatalsToBrowser);<br /><br />use Smokeping;<br /><br />use CGI::Fast;<br /><br />my $cfg = (shift @ARGV) || &quot;$FindBin::Bin/../etc/config&quot;;<br /><br /><br />while (my $q = new CGI::Fast) {<br />   Smokeping::cgi($cfg,$q);<br />}<br />-------------- next part --------------<br />An HTML attachment was scrubbed...<br />URL: http://lists.oetiker.ch/pipermail/smokeping-users/attachments/20130923/4c8ad3ff/attachment-0001.htm <br /><br />------------------------------<br /><br />Message: 2<br />Date: Mon, 23 Sep 2013 19:37:59 +0800<br />From: Steve Wray &lt;stevedwray@gmail.com&gt;<br />Subject: Re: [smokeping-users] 12 secondes to show a page on smokeping<br />        ?<br />To: Artiflo &lt;artiflo@gmail.com&gt;<br />Cc: 
 smokeping-users@lists.oetiker.ch<br />Message-ID:<br />        &lt;CA+VKOdPLZimtYxN_ccEqttXxYkPRjmcccvHXK_83ThbAPNKYYw@mail.gmail.com&gt;<br />Content-Type: text/plain; charset=&quot;iso-8859-1&quot;<br /><br />Try using fcgi, it loads a lot faster.<br /><br />ie where you have smokeping.cgi use smokeping.fcgi instead. You may need to<br />install some additional packages to make it work.<br /><br /><br /><br />On 23 September 2013 18:56, Artiflo &lt;artiflo@gmail.com&gt; wrote:<br /><br />&gt; Hello,<br />&gt;<br />&gt; On smokeping 2.6.8, I have 2600 devices on 90 FPING probe.<br />&gt;<br />&gt; Each time I try to show a page or when I click on menu that took ~12<br />&gt; secondes !!!<br />&gt;<br />&gt;  Why is so long ?<br />&gt;<br />&gt; (0.5 load on 4 XEON server)<br />&gt;<br />&gt; # time /usr/local/smokeping/bin/smokeping_cgi<br />&gt; /usr/local/smokeping/etc/config<br />&gt; real    0m12.763s<br />&gt;  user    0m11.519s<br />&gt; sys     0m0.710s<br />&gt;<br />&gt; 
 # cat /usr/local/smokeping/bin/smokeping_cgi<br />&gt;<br />&gt; #!/usr/bin/perl<br />&gt; # -*-perl-*-<br />&gt;<br />&gt; use strict;<br />&gt; use warnings;<br />&gt;<br />&gt; use FindBin;<br />&gt; use lib qw(); # PERL5LIB<br />&gt; use lib &quot;$FindBin::Bin/../thirdparty/lib/perl5&quot;;<br />&gt; use lib &quot;$FindBin::Bin/../lib&quot;;<br />&gt;<br />&gt; # don't bother with zombies<br />&gt; $SIG{CHLD} = 'IGNORE';<br />&gt;<br />&gt; use CGI::Carp qw(fatalsToBrowser);<br />&gt;<br />&gt; use Smokeping;<br />&gt;<br />&gt; use CGI::Fast;<br />&gt;<br />&gt; my $cfg = (shift @ARGV) || &quot;$FindBin::Bin/../etc/config&quot;;<br />&gt;<br />&gt;<br />&gt; while (my $q = new CGI::Fast) {<br />&gt;    Smokeping::cgi($cfg,$q);<br />&gt; }<br />&gt;<br />&gt; _______________________________________________<br />&gt; smokeping-users mailing list<br />&gt; smokeping-users@lists.oetiker.ch<br />&gt; https://lists.oetiker.ch/cgi-bin/listinfo/smokeping-users<br />&gt;<br />&
 gt;<br />-------------- next part --------------<br />An HTML attachment was scrubbed...<br />URL: http://lists.oetiker.ch/pipermail/smokeping-users/attachments/20130923/2ae4c352/attachment-0001.htm <br /><br />------------------------------<br /><br />Message: 3<br />Date: Mon, 23 Sep 2013 14:09:03 +0200<br />From: Artiflo &lt;artiflo@gmail.com&gt;<br />Subject: Re: [smokeping-users] 12 secondes to show a page on smokeping<br />        ?<br />To: Steve Wray &lt;stevedwray@gmail.com&gt;<br />Cc: smokeping-users &lt;smokeping-users@lists.oetiker.ch&gt;<br />Message-ID:<br />        &lt;CAKH3hrg5ymK=ceLYiHTwxW=Jpc24iNmx4QSr1A7q93UoF70H6Q@mail.gmail.com&gt;<br />Content-Type: text/plain; charset=&quot;utf-8&quot;<br /><br />Thanks for your quick answer :)<br /><br />I think I have already FCGI.<br /><br />How to know to be sure if I use CGI or FCGI for smokeping ?<br /><br />This is my smokeping.conf for Apache :<br /><br />ScriptAlias /smokeping/smokeping.cgi<br />&quot;/usr/local/smokeping
 /htdocs/smokeping.fcgi&quot;<br /><br />Alias /smokeping &quot;/usr/local/smokeping/htdocs/&quot;<br />&lt;Directory &quot;/usr/local/smokeping/htdocs/&quot;&gt;<br />         Options Indexes Includes FollowSymLinks ExecCGI<br />         AllowOverride All<br />         AddHandler php5-fastcgi .php .php5 .php4<br />         Action php5-fastcgi smokeping.fcgi<br />         Order allow,deny<br />         Allow from All<br />&lt;/Directory&gt;<br /><br />Alias /smokeping/cache &quot;/usr/local/smokeping/work/cache/&quot;<br />&lt;Directory &quot;/usr/local/smokeping/work/cache/&quot;&gt;<br />        Options Indexes FollowSymLinks<br />        AllowOverride None<br />        Order allow,deny<br />        Allow from all<br />&lt;/Directory&gt;<br /><br /><br /><br />2013/9/23 Steve Wray &lt;stevedwray@gmail.com&gt;<br /><br />&gt; Try using fcgi, it loads a lot faster.<br />&gt;<br />&gt; ie where you have smokeping.cgi use smokeping.fcgi instead. You may need<br />&gt; to instal
 l some additional packages to make it work.<br />&gt;<br />&gt;<br />&gt;<br />&gt; On 23 September 2013 18:56, Artiflo &lt;artiflo@gmail.com&gt; wrote:<br />&gt;<br />&gt;&gt; Hello,<br />&gt;&gt;<br />&gt;&gt; On smokeping 2.6.8, I have 2600 devices on 90 FPING probe.<br />&gt;&gt;<br />&gt;&gt; Each time I try to show a page or when I click on menu that took ~12<br />&gt;&gt; secondes !!!<br />&gt;&gt;<br />&gt;&gt;  Why is so long ?<br />&gt;&gt;<br />&gt;&gt; (0.5 load on 4 XEON server)<br />&gt;&gt;<br />&gt;&gt; # time /usr/local/smokeping/bin/smokeping_cgi<br />&gt;&gt; /usr/local/smokeping/etc/config<br />&gt;&gt; real    0m12.763s<br />&gt;&gt;  user    0m11.519s<br />&gt;&gt; sys     0m0.710s<br />&gt;&gt;<br />&gt;&gt; # cat /usr/local/smokeping/bin/smokeping_cgi<br />&gt;&gt;<br />&gt;&gt; #!/usr/bin/perl<br />&gt;&gt; # -*-perl-*-<br />&gt;&gt;<br />&gt;&gt; use strict;<br />&gt;&gt; use warnings;<br />&gt;&gt;<br />&gt;&gt; use FindBin;<br />&gt;&gt; use lib q
 w(); # PERL5LIB<br />&gt;&gt; use lib &quot;$FindBin::Bin/../thirdparty/lib/perl5&quot;;<br />&gt;&gt; use lib &quot;$FindBin::Bin/../lib&quot;;<br />&gt;&gt;<br />&gt;&gt; # don't bother with zombies<br />&gt;&gt; $SIG{CHLD} = 'IGNORE';<br />&gt;&gt;<br />&gt;&gt; use CGI::Carp qw(fatalsToBrowser);<br />&gt;&gt;<br />&gt;&gt; use Smokeping;<br />&gt;&gt;<br />&gt;&gt; use CGI::Fast;<br />&gt;&gt;<br />&gt;&gt; my $cfg = (shift @ARGV) || &quot;$FindBin::Bin/../etc/config&quot;;<br />&gt;&gt;<br />&gt;&gt;<br />&gt;&gt; while (my $q = new CGI::Fast) {<br />&gt;&gt;    Smokeping::cgi($cfg,$q);<br />&gt;&gt; }<br />&gt;&gt;<br />&gt;&gt; _______________________________________________<br />&gt;&gt; smokeping-users mailing list<br />&gt;&gt; smokeping-users@lists.oetiker.ch<br />&gt;&gt; https://lists.oetiker.ch/cgi-bin/listinfo/smokeping-users<br />&gt;&gt;<br />&gt;&gt;<br />&gt;<br />-------------- next part --------------<br />An HTML attachment was scrubbed...<br />URL: htt
 p://lists.oetiker.ch/pipermail/smokeping-users/attachments/20130923/3c9ee4cf/attachment-0001.htm <br /><br />------------------------------<br /><br />Message: 4<br />Date: Wed, 25 Sep 2013 12:22:04 +0100<br />From: Will Brocklebank &lt;will@facetofacedigital.com&gt;<br />Subject: [smokeping-users] Problem finding the HTDocs file<br />To: smokeping-users@lists.oetiker.ch<br />Message-ID:<br />        &lt;51C7142B-83EF-42C0-B248-C0A40B9E1298@facetofacedigital.com&gt;<br />Content-Type: text/plain; charset=&quot;us-ascii&quot;<br /><br />Dear all - I am an enthusiastic noob so please forgive any inexperienced foolishness ;-)<br /><br />I have progressed through the installation procedure on Raspbian and all seems to be running smoothly.<br /><br />However, I have hit a problem with firing up the actual web interface. Specifically I do not understand these instructions:<br /><br />&quot;There is a sample htdocs directory in your smokeping installation root. Copy its content to the pla
 ce where your webserver expects its files. There are also two sample cgi scripts showing how to launch the smokeping cgi in your website. The only difference is the file extension. Adjust the paths in the script and you should be ready to go.&quot;<br /><br />I installed smokeping via apt-get on my Raspberry Pi and now I cannot find any htdocs directory either in the smokeping installation root (for clarity maybe someone could tell me exactly where this is so I can double-check but it isn't in /usr/etc/smokeping) and do not know how to move forward!<br /><br />Thanks for all your help!<br /><br />Will<br />-------------- next part --------------<br />An HTML attachment was scrubbed...<br />URL: http://lists.oetiker.ch/pipermail/smokeping-users/attachments/20130925/a7882570/attachment-0001.htm <br /><br />------------------------------<br /><br />Message: 5<br />Date: Wed, 25 Sep 2013 09:00:57 -0300<br />From: Alessandro Palermo &lt;ok.aless@gmail.com&gt;<br />Subject: Re: [s
 mokeping-users] Problem finding the HTDocs file<br />To: Will Brocklebank &lt;will@facetofacedigital.com&gt;<br />Cc: smokeping-users &lt;smokeping-users@lists.oetiker.ch&gt;<br />Message-ID:<br />        &lt;CAPbg55Da-x2RnmMe-mnhYBu1xTMPWB7p1zZ2Es6D6MFeDGf5Zg@mail.gmail.com&gt;<br />Content-Type: text/plain; charset=&quot;iso-8859-1&quot;<br /><br />All configuration files are in /etc/smokeping/<br />The html base is basepage.html<br />The /etc/smokeping/config.d/ contains the Target, Probes and Alert files.<br /><br />Regards<br /><br /><br /><br />On 25 September 2013 08:22, Will Brocklebank &lt;will@facetofacedigital.com&gt;wrote:<br /><br />&gt; Dear all - I am an enthusiastic noob so please forgive any inexperienced<br />&gt; foolishness ;-)<br />&gt; I have progressed through the installation procedure on Raspbian and all<br />&gt; seems to be running smoothly.<br />&gt;<br />&gt; However, I have hit a problem with firing up the actual web interface.<br />&gt; Specifically I
  do not understand these instructions:<br />&gt;<br />&gt; &quot;There is a sample htdocs directory in your smokeping installation root.<br />&gt; Copy its content to the place where your webserver expects its files. There<br />&gt; are also two sample cgi scripts showing how to launch the smokeping cgi in<br />&gt; your website. The only difference is the file extension. Adjust the paths<br />&gt; in the script and you should be ready to go.&quot;<br />&gt;<br />&gt; I installed smokeping via apt-get on my Raspberry Pi and now I cannot find<br />&gt; any htdocs directory either in the smokeping installation root (for clarity<br />&gt; maybe someone could tell me exactly where this is so I can double-check but<br />&gt; it isn't in /usr/etc/smokeping) and do not know how to move forward!<br />&gt;<br />&gt; Thanks for all your help!<br />&gt;<br />&gt; Will<br />&gt;<br />&gt; _______________________________________________<br />&gt; smokeping-users mailing list<br />&gt; sm
 okeping-users@lists.oetiker.ch<br />&gt; https://lists.oetiker.ch/cgi-bin/listinfo/smokeping-users<br />&gt;<br />&gt;<br />-------------- next part --------------<br />An HTML attachment was scrubbed...<br />URL: http://lists.oetiker.ch/pipermail/smokeping-users/attachments/20130925/afe0e885/attachment.htm <br /><br />------------------------------<br /><br />_______________________________________________<br />smokeping-users mailing list<br />smokeping-users@lists.oetiker.ch<br />https://lists.oetiker.ch/cgi-bin/listinfo/smokeping-users<br /><br /><br />End of smokeping-users Digest, Vol 79, Issue 6<br />**********************************************</p>
  <br/>
  

  

  

  
    <hr/>
    This is an automated response.  Your issue has been noted.  We'll be in touch soon.<br/>

    

    <br/>
    Please reply to this email or visit the URL below with any additional details.<br/>
    <br/>
    <a href="http://florin-pc/portal/view-help-request/49">http://florin-pc/portal/view-help-request/49</a><br/>
  
</td>
</tr>
</table>
</body>