[smokeping-users] [Ticket #45] smokeping-users Digest, Vol 79, Issue 2

IT Department anghelflorin at globtel.ro
Tue Nov 12 18:32:43 CET 2013


This is a notification from the Help Desk.




On Nov 12, 2013 @ 05:32 pm, smokeping-users-request at lists.oetiker.ch wrote:
Send smokeping-users mailing list submissions to
	smokeping-users at lists.oetiker.ch

To subscribe or unsubscribe via the World Wide Web, visit
	https://lists.oetiker.ch/cgi-bin/listinfo/smokeping-users
or, via email, send a message with subject or body 'help' to
	smokeping-users-request at lists.oetiker.ch

You can reach the person managing the list at
	smokeping-users-owner at lists.oetiker.ch

When replying, please edit your Subject line so it is more specific
than "Re: Contents of smokeping-users digest..."


Today's Topics:

   1. smoke ping stops capturing data intermittently (Sean Power)
   2. Re: smoke ping stops capturing data intermittently (Gregory Sloop)
   3. Re: Help with PERL5LIB error (Matt Almgren)
   4. Re: Help with PERL5LIB error (Tom Throckmorton)
   5. Re: Help with PERL5LIB error (Jean)


----------------------------------------------------------------------

Message: 1
Date: Wed, 04 Sep 2013 10:47:22 -0400
From: Sean Power <sean at bitmakerlabs.com>
Subject: [smokeping-users] smoke ping stops capturing data
	intermittently
To: <smokeping-users at lists.oetiker.ch>
Message-ID: <CE4CC039.2DEC%sean at bitmakerlabs.com>
Content-Type: text/plain; charset="us-ascii"

Hello, 

I have "holes" in my smoke ping graphs, and no clue how I'd go about
troubleshooting them:  http://i.imgur.com/d4faBgZ.jpg.

I'm running smoke ping 2.6.8 on a raspberry pi model b, using Raspbian OS
(basically, Debian optimized for Raspberry Pi).

I've attached a dump of my configs here:

 http://pastebin.ca/2443480

Thoughts on where to go from here?

Thanks!



-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.oetiker.ch/pipermail/smokeping-users/attachments/20130904/f1a35dd2/attachment-0001.htm 

------------------------------

Message: 2
Date: Wed, 4 Sep 2013 08:07:10 -0700
From: Gregory Sloop <gregs at sloop.net>
Subject: Re: [smokeping-users] smoke ping stops capturing data
	intermittently
To: Sean Power <sean at bitmakerlabs.com>
Cc: smokeping-users at lists.oetiker.ch
Message-ID: <1109862885.20130904080710 at sloop.net>
Content-Type: text/plain; charset="us-ascii"

An HTML attachment was scrubbed...
URL: http://lists.oetiker.ch/pipermail/smokeping-users/attachments/20130904/a9f8a990/attachment-0001.htm 

------------------------------

Message: 3
Date: Wed, 4 Sep 2013 16:17:23 -0700
From: Matt Almgren <almgren at gmail.com>
Subject: Re: [smokeping-users] Help with PERL5LIB error
To: Lars Thegler <lars at thegler.dk>
Cc: SmokePing Users <smokeping-users at lists.oetiker.ch>
Message-ID:
	<CACeB1bnLraUmdZYm=FdQv9DSezT57XLi0ZRZjOo6HNe8eXdBfw at mail.gmail.com>
Content-Type: text/plain; charset="iso-8859-1"

Hi Lars, I tried the following:

237  export
PERL5LIB=/usr/lib64/perl5/vendor_perl/5.8.8/x86_64-linux-thread-multi
<Same Error>

Then I tried to add a link to the @INC lib:

245  cd /usr/share/perl5/
246  ln -s
/usr/lib64/perl5/vendor_perl/5.8.8/x86_64-linux-thread-multi/RRDs.pm .
<Same Error>

Still getting same results:

checking checking for perl module 'RRDs'... Failed
checking checking for perl module 'FCGI'... Ok
checking checking for perl module 'CGI'... Ok
checking checking for perl module 'CGI::Fast'... Ok
checking checking for perl module 'Config::Grammar'... Ok
checking checking for perl module 'Digest::HMAC_MD5'... Ok
checking checking for perl module 'LWP'... Ok

** Aborting Configure ******************************

   If you know where perl can find the missing modules, set
   the PERL5LIB environment variable accordingly.

<snip>






On Wed, Sep 4, 2013 at 12:12 AM, Lars Thegler <lars at thegler.dk> wrote:

> On Wed, Sep 4, 2013 at 7:45 AM, Matt Almgren <almgren at gmail.com> wrote:
> > I am pulling my hair out here.  I have a new CentOS6.4 install and
> running
> > into problems installing smokeping.  I'm not sure what to make of this
> > PERL5LIB.  I set it to /usr/bin/perl and still see problems.  Any ideas?
>
> PERL5LIB is a list of directories in which perl will look for module
> files, in addition to the built-in directories. So, find out where
> you've installed RRDs.pm, and add that directory to PERL5LIB.
>
> /Lars
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.oetiker.ch/pipermail/smokeping-users/attachments/20130904/7bf715fe/attachment-0001.htm 

------------------------------

Message: 4
Date: Wed, 04 Sep 2013 23:22:13 -0400
From: Tom Throckmorton <throck+smokeping at gmail.com>
Subject: Re: [smokeping-users] Help with PERL5LIB error
To: Matt Almgren <almgren at gmail.com>
Cc: SmokePing Users <smokeping-users at lists.oetiker.ch>
Message-ID: <5227F8E5.7080903 at gmail.com>
Content-Type: text/plain; charset=ISO-8859-1

Matt;

It looks like you have rpmforge repos enabled and you're pulling in el5
packages, e.g. the perl-rrdtool-1.4.7-1.el5.rf.x86_64.  Not only is that
package for the wrong dist, it is also for the wrong version of perl on
6.4 (5.10).  At this point, I would 'yum erase perl-rrdtool' and then
'yum install rrdtool-perl --disablerepo=rpmforge'.  That should take
care of your RRDs location issue for the build.

Beyond that, it looks like you may have the wrong rpmforge-release
package installed; you may want to backout any packages you installed
from that repo, correct that and then start again.

cheers,

-tt


On 09/04/2013 07:17 PM, Matt Almgren wrote:
> Hi Lars, I tried the following:
> 
> 237  export
> PERL5LIB=/usr/lib64/perl5/vendor_perl/5.8.8/x86_64-linux-thread-multi
> <Same Error>
> 
> Then I tried to add a link to the @INC lib: 
> 
> 245  cd /usr/share/perl5/
> 246  ln -s
> /usr/lib64/perl5/vendor_perl/5.8.8/x86_64-linux-thread-multi/RRDs.pm .
> <Same Error>
> 
> Still getting same results:
> 
> checking checking for perl module 'RRDs'... Failed
> checking checking for perl module 'FCGI'... Ok
> checking checking for perl module 'CGI'... Ok
> checking checking for perl module 'CGI::Fast'... Ok
> checking checking for perl module 'Config::Grammar'... Ok
> checking checking for perl module 'Digest::HMAC_MD5'... Ok
> checking checking for perl module 'LWP'... Ok
> 
> ** Aborting Configure ******************************
> 
>    If you know where perl can find the missing modules, set
>    the PERL5LIB environment variable accordingly.
> 
> <snip>
> 
> 
> 
> 
> 
> 
> On Wed, Sep 4, 2013 at 12:12 AM, Lars Thegler <lars at thegler.dk
> <mailto:lars at thegler.dk>> wrote:
> 
>     On Wed, Sep 4, 2013 at 7:45 AM, Matt Almgren <almgren at gmail.com
>     <mailto:almgren at gmail.com>> wrote:
>     > I am pulling my hair out here.  I have a new CentOS6.4 install and
>     running
>     > into problems installing smokeping.  I'm not sure what to make of this
>     > PERL5LIB.  I set it to /usr/bin/perl and still see problems.  Any
>     ideas?
> 
>     PERL5LIB is a list of directories in which perl will look for module
>     files, in addition to the built-in directories. So, find out where
>     you've installed RRDs.pm, and add that directory to PERL5LIB.
> 
>     /Lars
> 
> 
> 
> 
> _______________________________________________
> smokeping-users mailing list
> smokeping-users at lists.oetiker.ch
> https://lists.oetiker.ch/cgi-bin/listinfo/smokeping-users
> 



------------------------------

Message: 5
Date: Thu, 5 Sep 2013 06:23:19 +0200
From: Jean <jean at wedebugyou.com>
Subject: Re: [smokeping-users] Help with PERL5LIB error
To: "throck+smokeping at gmail.com" <throck+smokeping at gmail.com>
Cc: SmokePing Users <smokeping-users at lists.oetiker.ch>
Message-ID: <3412B5BC-40F6-4AFC-B178-30F7695DF71C at wedebugyou.com>
Content-Type: text/plain; charset="us-ascii"

Hi,

It seems there is no smokeping package under centos.

Try this guide. If any improvement needs to be done, I would be happy to contribute.

http://www.wedebugyou.com/2012/11/how-to-install-and-configure-smokeping-on-centos-6/

Good luck

Jean

On 2013-09-05, at 5:22, Tom Throckmorton <throck+smokeping at gmail.com> wrote:

> Matt;
> 
> It looks like you have rpmforge repos enabled and you're pulling in el5
> packages, e.g. the perl-rrdtool-1.4.7-1.el5.rf.x86_64.  Not only is that
> package for the wrong dist, it is also for the wrong version of perl on
> 6.4 (5.10).  At this point, I would 'yum erase perl-rrdtool' and then
> 'yum install rrdtool-perl --disablerepo=rpmforge'.  That should take
> care of your RRDs location issue for the build.
> 
> Beyond that, it looks like you may have the wrong rpmforge-release
> package installed; you may want to backout any packages you installed
> from that repo, correct that and then start again.
> 
> cheers,
> 
> -tt
> 
> 
> On 09/04/2013 07:17 PM, Matt Almgren wrote:
>> Hi Lars, I tried the following:
>> 
>> 237  export
>> PERL5LIB=/usr/lib64/perl5/vendor_perl/5.8.8/x86_64-linux-thread-multi
>> <Same Error>
>> 
>> Then I tried to add a link to the @INC lib: 
>> 
>> 245  cd /usr/share/perl5/
>> 246  ln -s
>> /usr/lib64/perl5/vendor_perl/5.8.8/x86_64-linux-thread-multi/RRDs.pm .
>> <Same Error>
>> 
>> Still getting same results:
>> 
>> checking checking for perl module 'RRDs'... Failed
>> checking checking for perl module 'FCGI'... Ok
>> checking checking for perl module 'CGI'... Ok
>> checking checking for perl module 'CGI::Fast'... Ok
>> checking checking for perl module 'Config::Grammar'... Ok
>> checking checking for perl module 'Digest::HMAC_MD5'... Ok
>> checking checking for perl module 'LWP'... Ok
>> 
>> ** Aborting Configure ******************************
>> 
>>   If you know where perl can find the missing modules, set
>>   the PERL5LIB environment variable accordingly.
>> 
>> <snip>
>> 
>> 
>> 
>> 
>> 
>> 
>> On Wed, Sep 4, 2013 at 12:12 AM, Lars Thegler <lars at thegler.dk
>> <mailto:lars at thegler.dk>> wrote:
>> 
>>    On Wed, Sep 4, 2013 at 7:45 AM, Matt Almgren <almgren at gmail.com
>>    <mailto:almgren at gmail.com>> wrote:
>>> I am pulling my hair out here.  I have a new CentOS6.4 install and
>>    running
>>> into problems installing smokeping.  I'm not sure what to make of this
>>> PERL5LIB.  I set it to /usr/bin/perl and still see problems.  Any
>>    ideas?
>> 
>>    PERL5LIB is a list of directories in which perl will look for module
>>    files, in addition to the built-in directories. So, find out where
>>    you've installed RRDs.pm, and add that directory to PERL5LIB.
>> 
>>    /Lars
>> 
>> 
>> 
>> 
>> _______________________________________________
>> smokeping-users mailing list
>> smokeping-users at lists.oetiker.ch
>> https://lists.oetiker.ch/cgi-bin/listinfo/smokeping-users
> 
> _______________________________________________
> smokeping-users mailing list
> smokeping-users at lists.oetiker.ch
> https://lists.oetiker.ch/cgi-bin/listinfo/smokeping-users
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.oetiker.ch/pipermail/smokeping-users/attachments/20130905/b25c67a2/attachment.htm 

------------------------------

_______________________________________________
smokeping-users mailing list
smokeping-users at lists.oetiker.ch
https://lists.oetiker.ch/cgi-bin/listinfo/smokeping-users


End of smokeping-users Digest, Vol 79, Issue 2
**********************************************

------
This is an automated response.  Your issue has been noted.  We'll be in touch soon.



Please reply to this email or visit the URL below with any additional details.

http://florin-pc/portal/view-help-request/45


-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.oetiker.ch/pipermail/smokeping-users/attachments/20131112/1efa3da9/attachment-0001.htm 


More information about the smokeping-users mailing list