From puneetbhrdwj02 at gmail.com Mon Jul 1 11:20:21 2013 From: puneetbhrdwj02 at gmail.com (puneet bhardwaj) Date: Mon, 1 Jul 2013 14:50:21 +0530 Subject: [smokeping-users] Network Latency of DHCP clients In-Reply-To: References: Message-ID: Hi Dan Yes I want to measure network latency between my smokeping monitoring server and all clients who have been allocated a DHCP address and also the how much Network Bandwidth they use. On Thu, Jun 27, 2013 at 9:07 PM, Dan O'Neill wrote: > Hi Puneet, > > Do you mean that you need to measure network latency between your > smokeping monitoring server and all clients who have been allocated a DHCP > address? Or do you mean that you need to monitor the latency of your DHCP > server for the request and allocation of an IP address? > > Dan > > > > On Thu, Jun 27, 2013 at 2:34 AM, puneet bhardwaj > wrote: > >> >> >> hello sir >> >> >> >> i have to measure the network latency of all my DHCP Clients. >> >> Is it possible if yes than How please help me. >> >> >> >> Thanx & Regards >> >> Puneet Bhardwaj >> >> _______________________________________________ >> smokeping-users mailing list >> smokeping-users at lists.oetiker.ch >> https://lists.oetiker.ch/cgi-bin/listinfo/smokeping-users >> >> > > > -- > Dan O'Neill > dano at northpb.com > 619-885-1961 > > > _______________________________________________ > 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/20130701/45768448/attachment.htm From paul.mansfield+smokeping at grapeshot.co.uk Mon Jul 1 11:21:57 2013 From: paul.mansfield+smokeping at grapeshot.co.uk (Paul Mansfield) Date: Mon, 1 Jul 2013 10:21:57 +0100 Subject: [smokeping-users] Install newbie problems In-Reply-To: References: Message-ID: you did install fping plugin on the slaves? and if you installed tcptraceroute, you did "chmod u+s" on it? the default plugin using tcptraceroute needs to be hacked to set explicit path to /usr/bin/tcptracetoute because some "clever" person at centos decided to set up the traceroute package to that /bin/tcptraceroute is a symlink to traceroute. 2013/6/29 Indian Maiden : > I am trying to install on centos 6.4 64 bit and cant seem to find out how to > get around this error: From paul.mansfield+smokeping at grapeshot.co.uk Mon Jul 1 11:25:05 2013 From: paul.mansfield+smokeping at grapeshot.co.uk (Paul Mansfield) Date: Mon, 1 Jul 2013 10:25:05 +0100 Subject: [smokeping-users] Network Latency of DHCP clients In-Reply-To: References: Message-ID: On 1 July 2013 10:20, puneet bhardwaj wrote: > Yes I want to measure network latency between my smokeping monitoring > server and all clients who have been allocated a DHCP address and also the I would suggest using cacti and monitor switch ports instead. From dano at northpb.com Mon Jul 1 15:07:10 2013 From: dano at northpb.com (Dan O'Neill) Date: Mon, 1 Jul 2013 06:07:10 -0700 Subject: [smokeping-users] Network Latency of DHCP clients In-Reply-To: References: Message-ID: On Mon, Jul 1, 2013 at 2:25 AM, Paul Mansfield < paul.mansfield+smokeping at grapeshot.co.uk> wrote: > On 1 July 2013 10:20, puneet bhardwaj wrote: > > Yes I want to measure network latency between my smokeping monitoring > > server and all clients who have been allocated a DHCP address and also > the > > I would suggest using cacti and monitor switch ports instead. > > While it is certainly possible to measure latency to your clients, DHCP allocated addresses add some behaviors that are somewhat incompatible with long-term measurements. DHCP hands out addresses on request. These addresses have a lease lifetime and the device that requested the address will be required to renew prior to the expiration of the lease. There is no guarantee that the device will always receive the same IP address, although it is very likely. Further problems arise when devices with an allocated address leave the network - a cell phone on WiFi, for example, will travel away from the network and therefore the address is no longer active or may be reassigned to a different device. This will generate graphs with holes, spikes and all kinds of noisy information. Assuming you're going to continue down this path, you'll need to find the dhcpd.leases file on your DHCP server. In a Linux installation, the file is normally located at /var/lib/dhcp3/dhcpd.leases. You'll then need to write a script to read this file, extract IP addresses, generate a set of Smokeping targets in your smokeping configuration file and finally reload Smokeping. You may also want to remove targets from leases that are no longer active, or not... Bandwidth measurement is not a strength of Smokeping. As mentioned by Paul Mansfield, you will want to use a different solution that can read SNMP information from your managed switch to retrieve the number of packets being sent and received. Best, Dan -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.oetiker.ch/pipermail/smokeping-users/attachments/20130701/e613ae9b/attachment.htm From theindianmaiden at gmail.com Wed Jul 3 18:21:41 2013 From: theindianmaiden at gmail.com (Indian Maiden) Date: Wed, 3 Jul 2013 09:21:41 -0700 Subject: [smokeping-users] RedHat install newbie issues. Message-ID: I have had to manually compile rrdtood but do not know how to resolve this error: 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. FIRST though, make sure that 'perl' starts the perl binary you want to use for SmokePing. Now you can install local copies of the missing modules by running ./setup/build-perl-modules.sh /opt/smokeping/thirdparty The RRDs perl module is part of RRDtool. Either use the rrdtool package provided by your OS or install rrdtool from source. If you install from source, the RRDs module is located PREFIX/lib/perl Hopefully it is easy! -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.oetiker.ch/pipermail/smokeping-users/attachments/20130703/659939dc/attachment.htm From paul.mansfield+smokeping at grapeshot.co.uk Wed Jul 3 18:43:43 2013 From: paul.mansfield+smokeping at grapeshot.co.uk (Paul Mansfield) Date: Wed, 3 Jul 2013 17:43:43 +0100 Subject: [smokeping-users] RedHat install newbie issues. In-Reply-To: References: Message-ID: is this for Centos6? these are the depends I put in when I packaged it... bc, fping, libidn, make, perl-CGI, perl-Config-Grammar, perl-Test-Simple, perl-YAML, popt, rrdtool-perl, tcptraceroute I had to use cpanspec for the perl-Config-Grammar package. On 3 July 2013 17:21, Indian Maiden wrote: > I have had to manually compile rrdtood but do not know how to resolve this > error: > > 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. FIRST though, make sure that 'perl' starts > the perl binary you want to use for SmokePing. Now you can install local > copies of the missing modules by running ./setup/build-perl-modules.sh > /opt/smokeping/thirdparty The RRDs perl module is part of RRDtool. Either > use the rrdtool package provided by your OS or install rrdtool from source. > If you install from source, the RRDs module is located PREFIX/lib/perl > > Hopefully it is easy! > > _______________________________________________ > smokeping-users mailing list > smokeping-users at lists.oetiker.ch > https://lists.oetiker.ch/cgi-bin/listinfo/smokeping-users > From thusitha555 at gmail.com Mon Jul 8 11:00:42 2013 From: thusitha555 at gmail.com (Dharmapriya Thusitha) Date: Mon, 8 Jul 2013 14:30:42 +0530 Subject: [smokeping-users] (no subject) Message-ID: hi, In smokeping ,it uses ++/[-_0-9a-zA-Z]+/ types of device names.so i cant add ip address as the device name .it gives an error." ERROR: /etc/smokeping/devices/xx.xx.xx.xx, line 1: unknown section '"xx.xx.xx.xx.and i have 5000 agents to monitor. because of this problem ,it is very hard to change the names of those devices.give me an solution -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.oetiker.ch/pipermail/smokeping-users/attachments/20130708/44583e38/attachment.htm From paul.mansfield+smokeping at grapeshot.co.uk Mon Jul 8 11:10:29 2013 From: paul.mansfield+smokeping at grapeshot.co.uk (Paul Mansfield) Date: Mon, 8 Jul 2013 10:10:29 +0100 Subject: [smokeping-users] (no subject) In-Reply-To: References: Message-ID: On 8 July 2013 10:00, Dharmapriya Thusitha wrote: > and i have 5000 agents to monitor. because of this problem ,it is very hard > to change the names of those devices.give me an solution I'd recommend programmatically generating something you can add to /etc/hosts file or DNS, as well as generating the smokeping configuration. If you have that many hosts you must be using some sort of automated deployment and monitoring already so you can get the list of IPs from that. From paul.mansfield+smokeping at grapeshot.co.uk Mon Jul 8 12:27:30 2013 From: paul.mansfield+smokeping at grapeshot.co.uk (Paul Mansfield) Date: Mon, 8 Jul 2013 11:27:30 +0100 Subject: [smokeping-users] (no subject) In-Reply-To: References: Message-ID: Simply emailing me directly with your original question, without having considered my reply, is neither polite nor likely to yield results. In your original demand for a solution, I presume you have invoked the service contract you paid for to get minions to spring into action? http://www.catb.org/esr/faqs/smart-questions.html#before On 8 July 2013 10:20, Dharmapriya Thusitha wrote: > hi, > In smokeping ,it uses ++/[-_0-9a-zA-Z]+/ types of device names.so i cant add > ip address as the device name .it gives an error." ERROR: > /etc/smokeping/devices/xx.xx.xx.xx, line 1: unknown section '"xx.xx.xx.xx. > and i have 5000 agents to monitor. because of this problem ,it is very hard > to change the names of those devices.give me an solution > > > On Mon, Jul 8, 2013 at 2:40 PM, Paul Mansfield > wrote: >> >> On 8 July 2013 10:00, Dharmapriya Thusitha wrote: >> > and i have 5000 agents to monitor. because of this problem ,it is very >> > hard >> > to change the names of those devices.give me an solution >> >> I'd recommend programmatically generating something you can add to >> /etc/hosts file or DNS, as well as generating the smokeping >> configuration. >> >> If you have that many hosts you must be using some sort of automated >> deployment and monitoring already so you can get the list of IPs from >> that. >> >> _______________________________________________ >> smokeping-users mailing list >> smokeping-users at lists.oetiker.ch >> https://lists.oetiker.ch/cgi-bin/listinfo/smokeping-users > > From paul.mansfield+smokeping at grapeshot.co.uk Mon Jul 8 13:28:15 2013 From: paul.mansfield+smokeping at grapeshot.co.uk (Paul Mansfield) Date: Mon, 8 Jul 2013 12:28:15 +0100 Subject: [smokeping-users] (no subject) In-Reply-To: References: Message-ID: the smokeping master host configuration is very fragile, and a mistake in one place doesn't always show up at the point of the error but can break the part below. the only solution is to comment out chunks of the config until the error goes away and then re-introduce things a line or two at a time. just to add to the misery, if a slave is running in debug mode I have found that it will lock up when the master's configuration changes. On 8 July 2013 12:22, Dharmapriya Thusitha wrote: > but in this example ,(go to this link)-> > https://lists.oetiker.ch/pipermail/smokeping-users/2002-July/000253.html > it has device name as > > 'hosting.com Colocation' > > so it has "." and " " .but they says the error is only the " " , not the > "." .how could be it happen .then > > why ip address gives an error "unknown section" to me. > > > > On Mon, Jul 8, 2013 at 2:50 PM, Dharmapriya Thusitha > wrote: >> >> hi, >> In smokeping ,it uses ++/[-_0-9a-zA-Z]+/ types of device names.so i cant >> add ip address as the device name .it gives an error." ERROR: >> /etc/smokeping/devices/xx.xx.xx.xx, line 1: unknown section '"xx.xx.xx.xx. >> and i have 5000 agents to monitor. because of this problem ,it is very hard >> to change the names of those devices.give me an solution >> >> >> On Mon, Jul 8, 2013 at 2:40 PM, Paul Mansfield >> wrote: >>> >>> On 8 July 2013 10:00, Dharmapriya Thusitha wrote: >>> > and i have 5000 agents to monitor. because of this problem ,it is very >>> > hard >>> > to change the names of those devices.give me an solution >>> >>> I'd recommend programmatically generating something you can add to >>> /etc/hosts file or DNS, as well as generating the smokeping >>> configuration. >>> >>> If you have that many hosts you must be using some sort of automated >>> deployment and monitoring already so you can get the list of IPs from >>> that. >>> >>> _______________________________________________ >>> smokeping-users mailing list >>> smokeping-users at lists.oetiker.ch >>> https://lists.oetiker.ch/cgi-bin/listinfo/smokeping-users >> >> > From adedc at wanadoo.fr Mon Jul 8 16:09:12 2013 From: adedc at wanadoo.fr (Arnaud) Date: Mon, 8 Jul 2013 14:09:12 +0000 (UTC) Subject: [smokeping-users] rename of smokeping.cgi into index.cgi References: <5111B78B.4040509@kdr.ms> Message-ID: G.W. Haywood jubileegroup.co.uk> writes: > > Hi there, > > On Wed, 6 Feb 2013, Kris De Rocker wrote: > > > I've followed a nice (and working!) how-to to install smokeping on a CentOS system > > (http://www.wedebugyou.com/2012/11/how-to-install-and-configure- smokeping-on-centos-6/) > > Unofficial HOWTOs generally should be treated with suspicion. They > are usually out of date and often wrong. > > > At this moment, the smokeping URL is like http://ip/smokeping/smokeping.cgi > > Can i just do a rename of smokeping.cgi into index.cgi so that when i surf to > > http://ip/smokeping it will be visible? Or isn't that possible? > > Don't do that. Use the facilities which are made available by Apache: > > http://httpd.apache.org/docs/2.4/mod/mod_dir.html#directoryindex > > Hi, I am following the same installation with a problem in step 6 (add smokeping start/stop script) because the link is anavailable. Could you please send me the file "smokeping_start_stop.txt"? Best regards From paul.mansfield+smokeping at grapeshot.co.uk Tue Jul 9 10:35:36 2013 From: paul.mansfield+smokeping at grapeshot.co.uk (Paul Mansfield) Date: Tue, 9 Jul 2013 09:35:36 +0100 Subject: [smokeping-users] rename of smokeping.cgi into index.cgi In-Reply-To: References: <5111B78B.4040509@kdr.ms> Message-ID: this is the script I use for starting slaves: #!/bin/bash #OPTS="--debug-daemon --nodaemon" chown root:smokeping /usr/local/smokeping/etc/secret chmod ug=rw,o= /usr/local/smokeping/etc/secret su - smokeping -s /bin/bash -c "/usr/local/smokeping/bin/smokeping $OPTS --master-url=http://smokeping.example.com --cache-dir=/usr/local/s mokeping/cache --shared-secret=/usr/local/smokeping/etc/secret" and here's the one I use for starting the master node: #!/bin/bash #OPTS="--debug-daemon --nodaemon" cd /usr/local/smokeping chgrp -R smokeping cache data var chmod -R g+w cache data var su - smokeping -s /bin/bash -c "cd /usr/local/smokeping ; bin/smokeping $OPTS" From expat.iain at gmail.com Tue Jul 9 14:30:34 2013 From: expat.iain at gmail.com (Iain) Date: Tue, 9 Jul 2013 14:30:34 +0200 Subject: [smokeping-users] Can't call method "_pings" References: Message-ID: <20130709143034.1a687c3a@expat-lt.net.tain.com> On Fri, 23 Nov 2012 12:50:05 +0200, ?????? ??????? did type at the keyboard thusly: > please help to solve the problem > > Can't call method "_pings" on an undefined value at > /usr/local/smokeping/lib/Smokeping.pm line 884. > > thanks Did you ever manage to fix this problem? I have the same issue after migrating a working installation from Debian to FreeBSD. I can view graphs and all other information if I pass ?target= argument on the URL, but hitting the http:////smokeping.fcgi results in the exact same error. From nick at livejournalinc.com Wed Jul 10 01:36:15 2013 From: nick at livejournalinc.com (Nick Toseland) Date: Wed, 10 Jul 2013 00:36:15 +0100 Subject: [smokeping-users] Slave Graphs not updating on master Message-ID: <51DC9E6F.2020007@livejournalinc.com> All, I am pulling my hair out trying to get the slave graphs to update on the master server. I have ran the debug on the slave and can it executing the probe and sending the data to the master. apparently the server acknowledges it, but nothing appears on the webpage. This is how the apache and smokeping process run: # ps -ef | grep apache root 987 1 0 22:45 ? 00:00:00 /usr/sbin/apache2 -k start www-data 989 987 0 22:45 ? 00:00:00 /usr/sbin/apache2 -k start www-data 991 987 0 22:45 ? 00:00:00 /usr/sbin/apache2 -k start www-data 992 987 0 22:45 ? 00:00:00 /usr/sbin/apache2 -k start # ps -ef | grep smokeping 106 1706 1 0 23:05 ? 00:00:00 /usr/sbin/smokeping [FPing] There is nothing in /var/log/syslog to suggest why this is not working. There is however these in /var/log/apache2/error.log. The problem is that those files don't exist [Tue Jul 9 23:17:00 2013] smokeping.cgi [client XXXXX]: Could not lock /var/lib/smokeping//External/BBC-CO-UK.smokeping-oregon.slave_cache (Permission denied). Trying again 2 more times. [Tue Jul 9 23:17:01 2013] smokeping.cgi [client XXXXX]: Could not lock /var/lib/smokeping//External/BBC-CO-UK.smokeping-oregon.slave_cache (Permission denied). Trying again 1 more times. [Tue Jul 9 23:17:02 2013] smokeping.cgi [client XXXXX]: Could not update /var/lib/smokeping//External/BBC-CO-UK.smokeping-oregon.slave_cache, giving up for now. at /usr/share/perl5/Smokeping/Master.pm line 156. [Tue Jul 9 23:22:00 2013] smokeping.cgi [client XXXXX]: Could not lock /var/lib/smokeping//External/BBC-CO-UK.smokeping-oregon.slave_cache (Permission denied). Trying again 2 more times. [Tue Jul 9 23:22:01 2013] smokeping.cgi [client XXXXX]: Could not lock /var/lib/smokeping//External/BBC-CO-UK.smokeping-oregon.slave_cache (Permission denied). Trying again 1 more times. [Tue Jul 9 23:22:02 2013] smokeping.cgi [client XXXXX]: Could not update /var/lib/smokeping//External/BBC-CO-UK.smokeping-oregon.slave_cache, giving up for now. at /usr/share/perl5/Smokeping/Master.pm line 156. ls -la /var/lib/smokeping//External/ total 5848 drwxr-xr-x 2 smokeping smokeping 4096 Jul 9 22:51 . drwxr-xr-x 6 smokeping smokeping 4096 Jul 9 22:51 .. -rw-r--r-- 1 smokeping smokeping 2986808 Jul 9 23:33 BBC-CO-UK.rrd -rw-r--r-- 1 smokeping smokeping 2986808 Jul 9 22:51 BBC-CO-UK~smokeping-oregon.rrd Could you help me get to the bottom of this? Thanks Nick -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.oetiker.ch/pipermail/smokeping-users/attachments/20130710/f47784a2/attachment.htm From gregs at sloop.net Wed Jul 10 01:52:31 2013 From: gregs at sloop.net (Gregory Sloop) Date: Tue, 9 Jul 2013 16:52:31 -0700 Subject: [smokeping-users] Slave Graphs not updating on master In-Reply-To: <51DC9E6F.2020007@livejournalinc.com> References: <51DC9E6F.2020007@livejournalinc.com> Message-ID: <1517435054.20130709165231@sloop.net> An HTML attachment was scrubbed... URL: http://lists.oetiker.ch/pipermail/smokeping-users/attachments/20130709/029d6a8d/attachment-0001.htm From smokeping at museum.rain.com Wed Jul 10 01:56:04 2013 From: smokeping at museum.rain.com (Jim Long) Date: Tue, 9 Jul 2013 16:56:04 -0700 Subject: [smokeping-users] Slave Graphs not updating on master In-Reply-To: <51DC9E6F.2020007@livejournalinc.com> References: <51DC9E6F.2020007@livejournalinc.com> Message-ID: <20130709235604.GA45220@ns.umpquanet.com> "Get to the bottom of this" I'm not sure, but one thing seems fishy..... On Wed, Jul 10, 2013 at 12:36:15AM +0100, Nick Toseland wrote: > > ls -la /var/lib/smokeping//External/ > total 5848 > drwxr-xr-x 2 smokeping smokeping 4096 Jul 9 22:51 . > drwxr-xr-x 6 smokeping smokeping 4096 Jul 9 22:51 .. > -rw-r--r-- 1 smokeping smokeping 2986808 Jul 9 23:33 BBC-CO-UK.rrd > -rw-r--r-- 1 smokeping smokeping 2986808 Jul 9 22:51 > BBC-CO-UK~smokeping-oregon.rrd Since ls knows that "smokeping" is a defined username, and if ps shows: > This is how the apache and smokeping process run: > # ps -ef | grep apache > root 987 1 0 22:45 ? 00:00:00 /usr/sbin/apache2 -k start > www-data 989 987 0 22:45 ? 00:00:00 /usr/sbin/apache2 -k start > www-data 991 987 0 22:45 ? 00:00:00 /usr/sbin/apache2 -k start > www-data 992 987 0 22:45 ? 00:00:00 /usr/sbin/apache2 -k start > > # ps -ef | grep smokeping > 106 1706 1 0 23:05 ? 00:00:00 /usr/sbin/smokeping [FPing] ... then what's the "106" doing at the beginning of that line? Are you trying to show that the smokeping process is running as UID 106, and ps is unable to map that UID to a username? Or some other reason the apache processes show a username and the smokeping process doesn't? From thusitha555 at gmail.com Wed Jul 10 06:56:19 2013 From: thusitha555 at gmail.com (Dharmapriya Thusitha) Date: Wed, 10 Jul 2013 10:26:19 +0530 Subject: [smokeping-users] (no subject) In-Reply-To: References: Message-ID: hi , is there any way to get smokeping alert data through API.(when an alert occurred, get that alert through API ). thanks thusitha On Mon, Jul 8, 2013 at 2:30 PM, Dharmapriya Thusitha wrote: > > > hi, > In smokeping ,it uses ++/[-_0-9a-zA-Z]+/ types of device names.so i cant > add ip address as the device name .it gives an error." ERROR: > /etc/smokeping/devices/xx.xx.xx.xx, line 1: unknown section '"xx.xx.xx.xx.and i have 5000 agents to monitor. because of this problem ,it is very hard > to change the names of those devices.give me an solution > > _______________________________________________ > 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/20130710/d76973cb/attachment.htm From alter3d at alter3d.ca Wed Jul 10 07:00:42 2013 From: alter3d at alter3d.ca (Peter Kristolaitis) Date: Wed, 10 Jul 2013 01:00:42 -0400 Subject: [smokeping-users] (no subject) In-Reply-To: References: Message-ID: <51DCEA7A.806@alter3d.ca> Smokeping itself does not have an API you can query. However, with a bit of work, you can have Smokeping trigger an external API when an alert is triggered/raised/cleared. From the docs:* to* /(mandatory setting)/ //Either an email address to send alerts to, or the name of a program to execute when an alert matches. To call a program, the first character of the *to* value must be a pipe symbol "|". The program will the be called whenever an alert matches, using the following 5 arguments (except if *edgetrigger* is 'yes'; see below): *name-of-alert*, *target*, *loss-pattern*, *rtt-pattern*, *hostname*. You can also provide a comma separated list of addresses and programs. - Peter On 7/10/2013 12:56 AM, Dharmapriya Thusitha wrote: > hi , > is there any way to get smokeping alert data through API.(when an > alert occurred, get that alert through API ). > thanks > thusitha > > > On Mon, Jul 8, 2013 at 2:30 PM, Dharmapriya Thusitha > > wrote: > > > > hi, > In smokeping ,it uses ++/[-_0-9a-zA-Z]+/ types of device names.so > i cant add ip address as the device name .it gives an error." > ERROR: /etc/smokeping/devices/xx.xx.xx.xx, line 1: unknown section > '"xx.xx.xx.xx. and i have 5000 agents to monitor. because of this > problem ,it is very hard to change the names of those devices.give > me an solution > > _______________________________________________ > 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/20130710/a30c63ef/attachment.htm -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature Size: 4246 bytes Desc: S/MIME Cryptographic Signature Url : http://lists.oetiker.ch/pipermail/smokeping-users/attachments/20130710/a30c63ef/attachment.bin From nick at livejournalinc.com Wed Jul 10 11:52:10 2013 From: nick at livejournalinc.com (Nick Toseland) Date: Wed, 10 Jul 2013 10:52:10 +0100 Subject: [smokeping-users] Slave Graphs not updating on master In-Reply-To: <1517435054.20130709165231@sloop.net> References: <51DC9E6F.2020007@livejournalinc.com> <1517435054.20130709165231@sloop.net> Message-ID: <51DD2ECA.6060607@livejournalinc.com> Hi Greg I managed to fix the the issue by as you say giving www-data access to the RRD files. The problem is I don't want to have to do this for every RRD file that is created. Do you happen to have the link to the messages for mod'ing the startup script? Thanks for your help NIck On 10/07/2013 00:52, Gregory Sloop wrote: > Re: [smokeping-users] Slave Graphs not updating on master www-data > needs rights to write to the RRD files. > > A search for "slave permissions" will probably give a few more > pointers from the list since this is a common issue. > changing ownership and rights should set you right. > [Even better, mod'ing the startup script to change all the RRD files > so they are www-data writeable - this way new slave setups won't get > borked if you forget to mod them...a post in the last day or two > showed a good example of this.] > > -Greg > > > > All, > > I am pulling my hair out trying to get the slave graphs to update on > the master server. > > I have ran the debug on the slave and can it executing the probe and > sending the data to the master. apparently the server acknowledges it, > but nothing appears on the webpage. > > > This is how the apache and smokeping process run: > # ps -ef | grep apache > root 987 1 0 22:45 ? 00:00:00 /usr/sbin/apache2 -k start > www-data 989 987 0 22:45 ? 00:00:00 /usr/sbin/apache2 -k start > www-data 991 987 0 22:45 ? 00:00:00 /usr/sbin/apache2 -k start > www-data 992 987 0 22:45 ? 00:00:00 /usr/sbin/apache2 -k start > > # ps -ef | grep smokeping > 106 1706 1 0 23:05 ? 00:00:00 /usr/sbin/smokeping > [FPing] > > There is nothing in /var/log/syslog to suggest why this is not working. > > There is however these in /var/log/apache2/error.log. The problem is > that those files don't exist > > [Tue Jul 9 23:17:00 2013] smokeping.cgi [client XXXXX]: Could not > lock > /var/lib/smokeping//External/BBC-CO-UK.smokeping-oregon.slave_cache > (Permission denied). Trying again 2 more times. > [Tue Jul 9 23:17:01 2013] smokeping.cgi [client XXXXX]: Could not > lock > /var/lib/smokeping//External/BBC-CO-UK.smokeping-oregon.slave_cache > (Permission denied). Trying again 1 more times. > [Tue Jul 9 23:17:02 2013] smokeping.cgi [client XXXXX]: Could not > update > /var/lib/smokeping//External/BBC-CO-UK.smokeping-oregon.slave_cache, > giving up for now. at /usr/share/perl5/Smokeping/Master.pm line 156. > [Tue Jul 9 23:22:00 2013] smokeping.cgi [client XXXXX]: Could not > lock > /var/lib/smokeping//External/BBC-CO-UK.smokeping-oregon.slave_cache > (Permission denied). Trying again 2 more times. > [Tue Jul 9 23:22:01 2013] smokeping.cgi [client XXXXX]: Could not > lock > /var/lib/smokeping//External/BBC-CO-UK.smokeping-oregon.slave_cache > (Permission denied). Trying again 1 more times. > [Tue Jul 9 23:22:02 2013] smokeping.cgi [client XXXXX]: Could not > update > /var/lib/smokeping//External/BBC-CO-UK.smokeping-oregon.slave_cache, > giving up for now. at /usr/share/perl5/Smokeping/Master.pm line 156. > > ls -la /var/lib/smokeping//External/ > total 5848 > drwxr-xr-x 2 smokeping smokeping 4096 Jul 9 22:51 . > drwxr-xr-x 6 smokeping smokeping 4096 Jul 9 22:51 .. > -rw-r--r-- 1 smokeping smokeping 2986808 Jul 9 23:33 BBC-CO-UK.rrd > -rw-r--r-- 1 smokeping smokeping 2986808 Jul 9 22:51 > BBC-CO-UK~smokeping-oregon.rrd > > > Could you help me get to the bottom of this? > > Thanks > > Nick > > > > > > /-- > Gregory Sloop, Principal: Sloop Network & Computer Consulting > Voice: 503.251.0452 x82 > EMail: /gregs at sloop.net > http://www.sloop.net > /--- > > > _______________________________________________ > 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/20130710/2d1068de/attachment-0001.htm From nick at livejournalinc.com Fri Jul 12 19:02:17 2013 From: nick at livejournalinc.com (Nick Toseland) Date: Fri, 12 Jul 2013 18:02:17 +0100 Subject: [smokeping-users] Alerts for different slaves Message-ID: <51E03699.20407@livejournalinc.com> Hi All, Is it possible to have alerts per slave? I have a slave that is approx 140ms from the master. If for instance I ping the www.bbc.co.uk from the master it is about 150 ms RTT, from the slave it is 12ms.. I would like an alert to fire if the RTT from the master goes above 200ms and an alert if the RTT from the slave goes about 40ms Many thanks Nick From jean at wedebugyou.com Fri Jul 12 21:18:49 2013 From: jean at wedebugyou.com (Jean St-Laurent) Date: Fri, 12 Jul 2013 21:18:49 +0200 Subject: [smokeping-users] rename of smokeping.cgi into index.cgi In-Reply-To: References: <5111B78B.4040509@kdr.ms> Message-ID: <51E05699.9020001@wedebugyou.com> On 7/8/13 4:09 PM, Arnaud wrote: > G.W. Haywood jubileegroup.co.uk> writes: > >> Hi there, >> >> On Wed, 6 Feb 2013, Kris De Rocker wrote: >> >>> I've followed a nice (and working!) how-to to install smokeping on a > CentOS system >>> (http://www.wedebugyou.com/2012/11/how-to-install-and-configure- > smokeping-on-centos-6/) >> Unofficial HOWTOs generally should be treated with suspicion. They >> are usually out of date and often wrong. >> >>> At this moment, the smokeping URL is like > http://ip/smokeping/smokeping.cgi >>> Can i just do a rename of smokeping.cgi into index.cgi so that when i > surf to >>> http://ip/smokeping it will be visible? Or isn't that possible? >> Don't do that. Use the facilities which are made available by Apache: >> >> http://httpd.apache.org/docs/2.4/mod/mod_dir.html#directoryindex >> >> > Hi, > > I am following the same installation with a problem in step 6 (add > smokeping start/stop script) because the link is anavailable. > Could you please send me the file "smokeping_start_stop.txt"? > > Best regards > > > > _______________________________________________ > smokeping-users mailing list > smokeping-users at lists.oetiker.ch > https://lists.oetiker.ch/cgi-bin/listinfo/smokeping-users Hi, the link is fix in step 6. Sincerely, Jean From liste at karp.fr Tue Jul 16 18:09:48 2013 From: liste at karp.fr (Nicolas KARP) Date: Tue, 16 Jul 2013 18:09:48 +0200 Subject: [smokeping-users] SipSak : host uri issue Message-ID: Hi Everyone, As I'm not an expert in Perl, i don't really understand what is happening with this SipSak probe : *Probe config : * + SipSak binary = /usr/local/bin/sipsak forks = 5 offset = 50% step = 300 timeout = 15 params = --hostname myhost *Traget config : * ++ SipGateway probe = SipSak host = hostip port = 5060 user = nobody When I look at the "ps" output, here is what I see when smokeping executes the sipsak command : /usr/local/bin/sipsak -vv -A 20 -s sip nobody hostip 5060 --hostname myhost If I look at the code for the probe, the variable host should be something like : $host = $vars->{user}.'@'.$host if $vars->{user}; $host = $host . ':' . $vars->{port} if $vars->{port}; So in my case : "nobody at hostip:5060" But I don't know why the characters "@" and ":" were removed from the hostname when they are using with the command open : open (my $sak,'-|',$self->{properties}{binary},'-vv','-A',$pingcount,'-s','sip:'.$host, at extra_opts) Any idea ? Many thanks. # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - # - - Nicolas KARP # - - Network and Security Engineer # - - Email : liste at karp.fr # - - Linkedin : http://www.linkedin.com/in/nicolaskarp # - - Viadeo : http://www.viadeo.com/fr/profile/nicolas.karp # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.oetiker.ch/pipermail/smokeping-users/attachments/20130716/4e1c4e90/attachment.htm From rjd at merit.edu Tue Jul 16 19:30:31 2013 From: rjd at merit.edu (Russell Dwarshuis) Date: Tue, 16 Jul 2013 13:30:31 -0400 (EDT) Subject: [smokeping-users] SipSak : host uri issue In-Reply-To: References: Message-ID: <1660584909.226915.1373995831757.JavaMail.zimbra@merit.edu> I don't see anything obviously wrong. Perhaps the shell that open invokes is changing them. Try open with just three arguments instead, like open (my $sak, '-|', "$self->{properties}{binary} -vv -A $pingcount -s sip:$host " . join(' ', at extra_opts)); Another possibility is you are looking at an old invocation in ps and your run did not start a new sipsak??? -Russell Dwarshuis ----- Original Message ----- From: "Nicolas KARP" To: "" Sent: Tuesday, July 16, 2013 12:09:48 PM Subject: [smokeping-users] SipSak : host uri issue Hi Everyone, As I'm not an expert in Perl, i don't really understand what is happening with this SipSak probe : Probe config : + SipSak binary = /usr/local/bin/sipsak forks = 5 offset = 50% step = 300 timeout = 15 params = --hostname myhost Traget config : ++ SipGateway probe = SipSak host = hostip port = 5060 user = nobody When I look at the "ps" output, here is what I see when smokeping executes the sipsak command : /usr/local/bin/sipsak -vv -A 20 -s sip nobody hostip 5060 --hostname myhost If I look at the code for the probe, the variable host should be something like : $host = $vars->{user}.'@'.$host if $vars->{user}; $host = $host . ':' . $vars->{port} if $vars->{port}; So in my case : "nobody at hostip:5060" But I don't know why the characters "@" and ":" were removed from the hostname when they are using with the command open : open (my $sak,'-|',$self->{properties}{binary},'-vv','-A',$pingcount,'-s','sip:'.$host, at extra_opts) Any idea ? Many thanks. # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - # - - Nicolas KARP # - - Network and Security Engineer # - - Email : liste at karp.fr # - - Linkedin : http://www.linkedin.com/in/nicolaskarp # - - Viadeo : http://www.viadeo.com/fr/profile/ nicolas.karp # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - _______________________________________________ smokeping-users mailing list smokeping-users at lists.oetiker.ch https://lists.oetiker.ch/cgi-bin/listinfo/smokeping-users From nick at livejournalinc.com Tue Jul 16 21:44:05 2013 From: nick at livejournalinc.com (Nick Toseland) Date: Tue, 16 Jul 2013 20:44:05 +0100 Subject: [smokeping-users] Alerts for different slaves In-Reply-To: <51E03699.20407@livejournalinc.com> References: <51E03699.20407@livejournalinc.com> Message-ID: <51E5A285.7030902@livejournalinc.com> Hi, Does anybody have any suggestions? Thanks In Advance Nick On Fri Jul 12 18:02:17 2013, Nick Toseland wrote: > Hi All, > > Is it possible to have alerts per slave? > > I have a slave that is approx 140ms from the master. > > If for instance I ping the www.bbc.co.uk from the master it is about 150 > ms RTT, from the slave it is 12ms.. > > I would like an alert to fire if the RTT from the master goes above > 200ms and an alert if the RTT from the slave goes about 40ms > > Many thanks > > Nick From liste at karp.fr Tue Jul 16 22:12:52 2013 From: liste at karp.fr (Nicolas KARP) Date: Tue, 16 Jul 2013 22:12:52 +0200 Subject: [smokeping-users] SipSak : host uri issue In-Reply-To: <1660584909.226915.1373995831757.JavaMail.zimbra@merit.edu> References: <1660584909.226915.1373995831757.JavaMail.zimbra@merit.edu> Message-ID: Another possibility is you are looking at an old invocation in ps and your > run did not start a new sipsak??? > > > LoL. No, I was doing a "while [ 1 ]" with a "ps | grep sipsak" in order to check the next sip call ;) The variable host looks good before the call of the funtion open because I tried to write the value of this variable and was able to see the : and @.. I will try what you suggested. I think Perl should be using the shell "sh". I will check tomorrow and run some tests again. That's odd ! FYI, i'm using Centos 6.1 if I remeber right. Cheers. Nick > > ----- Original Message ----- > From: "Nicolas KARP" > To: "" > > Sent: Tuesday, July 16, 2013 12:09:48 PM > Subject: [smokeping-users] SipSak : host uri issue > > Hi Everyone, > > As I'm not an expert in Perl, i don't really understand what is happening > with this SipSak probe : > > Probe config : > > + SipSak > binary = /usr/local/bin/sipsak > forks = 5 > offset = 50% > step = 300 > timeout = 15 > params = --hostname myhost > > Traget config : > > ++ SipGateway > probe = SipSak > host = hostip > port = 5060 > user = nobody > > > > When I look at the "ps" output, here is what I see when smokeping executes > the sipsak command : > > /usr/local/bin/sipsak -vv -A 20 -s sip nobody hostip 5060 --hostname myhost > > If I look at the code for the probe, the variable host should be something > like : > > $host = $vars->{user}.'@'.$host if $vars->{user}; > $host = $host . ':' . $vars->{port} if $vars->{port}; > > > So in my case : "nobody at hostip:5060" > > But I don't know why the characters "@" and ":" were removed from the > hostname when they are using with the command open : > > > open (my > $sak,'-|',$self->{properties}{binary},'-vv','-A',$pingcount,'-s','sip:'.$host, at extra_opts) > > > Any idea ? > > Many thanks. > > > # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - > - - - - - - - - - - - - - - - - - - - - > > # - - Nicolas KARP > # - - Network and Security Engineer > # - - Email : liste at karp.fr > # - - Linkedin : http://www.linkedin.com/in/nicolaskarp > # - - Viadeo : http://www.viadeo.com/fr/profile/ nicolas.karp > # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - > - - - - - - - - - - - - - - - - - - - - > > > > _______________________________________________ > 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/20130716/98953bec/attachment-0001.htm From gregs at sloop.net Tue Jul 16 22:47:22 2013 From: gregs at sloop.net (Gregory Sloop) Date: Tue, 16 Jul 2013 13:47:22 -0700 Subject: [smokeping-users] Alerts for different slaves In-Reply-To: <51E5A285.7030902@livejournalinc.com> References: <51E03699.20407@livejournalinc.com> <51E5A285.7030902@livejournalinc.com> Message-ID: <61350319.20130716134722@sloop.net> I keep forgetting to send to the list - Sorry Nick, you're going to get a duplicate! --- I think you'd have to build duplicate targets, and then assign one target to the master only, and the other target to the slave. [Where the target is the same device.] Then you'd assign different alert levels for the two targets. But I don't think there's a way to have two different alerts on the same target for different slave(s)/master(s). So, to get multiple separate alerts for the same device, you'll have to have the same device as two different targets. [And that will generate the ping or other check traffic again for each unique alert group...and also store an additional RRD file etc.] I'd guess that using Nagios to generate the alerts would probably be better. [Though the alerting condidtions nuance with Nagios isn't as sophisticated as in SP.] I use Nagios, not because I want multiple levels of thresholds, but because I want different alerts at different times, and destinations etc. Nagios has much more sophisticated alert/notification handling than SP. Perhaps someone else will have other suggestions, but that's the only way I can see to do it. -Greg --- NT> Hi, NT> Does anybody have any suggestions? NT> Thanks In Advance NT> Nick NT> On Fri Jul 12 18:02:17 2013, Nick Toseland wrote: >> Hi All, >> >> Is it possible to have alerts per slave? >> >> I have a slave that is approx 140ms from the master. >> >> If for instance I ping the www.bbc.co.uk from the master it is about 150 >> ms RTT, from the slave it is 12ms.. >> >> I would like an alert to fire if the RTT from the master goes above >> 200ms and an alert if the RTT from the slave goes about 40ms >> >> Many thanks >> >> Nick NT> _______________________________________________ NT> smokeping-users mailing list NT> smokeping-users at lists.oetiker.ch NT> https://lists.oetiker.ch/cgi-bin/listinfo/smokeping-users -- Gregory Sloop, Principal: Sloop Network & Computer Consulting Voice: 503.251.0452 x82 EMail: gregs at sloop.net http://www.sloop.net --- From dragonn at email.cz Wed Jul 17 09:09:44 2013 From: dragonn at email.cz (Mirek Kalina) Date: Wed, 17 Jul 2013 09:09:44 +0200 Subject: [smokeping-users] Tuning smokeping for many hosts Message-ID: <51E64338.5020006@email.cz> Hi all, please is it possible not to use templates in RRDs::update() call in smokeping? I want to use rrdcached which is not allowed to use together with templated updates. I tried to comment out lines which defines template and it looks working well, but to tell the truth I don't know why it's used or what exactly templates do. Thanks a lot. Mirek From mdecamps at mcgrawcom.net Wed Jul 17 15:47:40 2013 From: mdecamps at mcgrawcom.net (DeCamps, Miguel) Date: Wed, 17 Jul 2013 13:47:40 +0000 Subject: [smokeping-users] Smokeping slave syslog Message-ID: Hello everyone! I am trying to integrate smokeping into my Open monitoring Distribution deployment as an alternative to IPSLA. Currently we have a Master slave configuration of Smokeping for a bunch of sensors we manage which works very well! The next stage of my project is to find out if there is a way for my slave instances running smokeping to report ALERTS into their own local syslog. I know that the Master Smokeping server reports the ALERT into its own syslog facility; but I need the alerts triggered to be reported on the Slave probes syslog so I can use the check_mk log watch agent of OMD to tie the alert to individual smokeping sensors that I monitor using Check_mk. Please help! Thank you! Sincerely, Miguel DeCamps Data Engineer Tel: 212.849.2340 | Cell: 917.596.2636 | 24hr Support 888.543.2000 www.mcgrawcom.net Take a loot at our e-brochure: http://www.mcgrawcom.net/ebrochure Check out our e-brochure to see how we are redefining Hosted VoIP with InPacket, McGraw's Unified Communications Platform! http://www.mcgrawcom.net/inpacket/demo/ [Description: Description: cid:image001.gif at 01CE2A15.CF97E080] [Description: Description: bcmccna] [Description: Description: Description: cid:image002.jpg at 01CE2A09.D9DB1910] This email and the attached documents are provided by McGraw Communications solely for your review. This email and the attached documents are confidential and are the property of McGraw Communications. This email is not to be forwarded, copied or otherwise disseminated without the express written consent of McGraw Communications. Any Proposal contained in this e-mail is provided by McGraw Communications solely for your review. This proposal is confidential and is the property of McGraw Communications and shall not be copied or otherwise disseminated without the express written consent of McGraw Communications -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.oetiker.ch/pipermail/smokeping-users/attachments/20130717/79f5dbe5/attachment-0001.htm -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.gif Type: image/gif Size: 16356 bytes Desc: image001.gif Url : http://lists.oetiker.ch/pipermail/smokeping-users/attachments/20130717/79f5dbe5/attachment-0001.gif -------------- next part -------------- A non-text attachment was scrubbed... Name: image002.jpg Type: image/jpeg Size: 1860 bytes Desc: image002.jpg Url : http://lists.oetiker.ch/pipermail/smokeping-users/attachments/20130717/79f5dbe5/attachment-0002.jpg -------------- next part -------------- A non-text attachment was scrubbed... Name: image003.jpg Type: image/jpeg Size: 986 bytes Desc: image003.jpg Url : http://lists.oetiker.ch/pipermail/smokeping-users/attachments/20130717/79f5dbe5/attachment-0003.jpg From liste at karp.fr Wed Jul 17 17:12:24 2013 From: liste at karp.fr (Nicolas KARP) Date: Wed, 17 Jul 2013 17:12:24 +0200 Subject: [smokeping-users] SipSak : host uri issue In-Reply-To: References: <1660584909.226915.1373995831757.JavaMail.zimbra@merit.edu> Message-ID: I was not able to find where the issue was.. I tried with only 3 arguments, I also tried with the ` ` to invoke a shell command but with no luck, still not able to see the " @ " and the " : " The shell used is bash : Centos 6.3 // perl5.10.1 // Bash 4.1.2 Any idea ? Nick -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.oetiker.ch/pipermail/smokeping-users/attachments/20130717/b7e064e9/attachment.htm From gregs at sloop.net Wed Jul 17 19:04:46 2013 From: gregs at sloop.net (Gregory Sloop) Date: Wed, 17 Jul 2013 10:04:46 -0700 Subject: [smokeping-users] Smokeping slave syslog In-Reply-To: References: Message-ID: <1698282512.20130717100446@sloop.net> An HTML attachment was scrubbed... URL: http://lists.oetiker.ch/pipermail/smokeping-users/attachments/20130717/e7bf68f0/attachment.htm From paul.mansfield+smokeping at grapeshot.co.uk Wed Jul 17 23:44:16 2013 From: paul.mansfield+smokeping at grapeshot.co.uk (Paul Mansfield) Date: Wed, 17 Jul 2013 22:44:16 +0100 Subject: [smokeping-users] Smokeping slave syslog In-Reply-To: References: Message-ID: have you considered switching to a version of syslog that allows you to filter logging in more interesting ways, such as syslog-ng and also allows calling external program? you could then log slaves separately from the master, and do all sorts of clever things... even inject data into nagios. http://www.balabit.com/sites/default/files/documents/syslog-ng-ose-3.3-guides/en/syslog-ng-ose-v3.3-guide-admin-en/html/patterndb-actions-external.html From mailinglists at rednarb.com Thu Jul 18 19:47:35 2013 From: mailinglists at rednarb.com (Eric Brander) Date: Thu, 18 Jul 2013 11:47:35 -0600 Subject: [smokeping-users] Smokeping Graph Display Settings Message-ID: Smokeping Gurus: Is there a way to change the graph display settings other than width and height? I'm looking at borders, colors, etc. Initially I'd just like them to all look the same - the overview graphs have a border and are a different color than the "normal" generated graphs. Are there any configurable settings for this? TIA, Eric -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.oetiker.ch/pipermail/smokeping-users/attachments/20130718/54ff1f3c/attachment.htm From howie at thingy.com Fri Jul 19 15:16:53 2013 From: howie at thingy.com (Howard Jones) Date: Fri, 19 Jul 2013 14:16:53 +0100 Subject: [smokeping-users] does loss_background do what I think? (and why doesn't it do it?) Message-ID: <51E93C45.2040409@thingy.com> Hi folks, I've just upgraded my 2.4.2 installation to 2.6.9, and noticed on the website this nice looking feature where loss is shown as a vertical line instead of just the single pixel on the median line. I'm tracking a small/infrequent loss problem at the moment, and this would be very useful. (I mean, like this: http://oss.oetiker.ch/smokeping/doc/reading_detail.png) My 2.4.2 didn't do this, and my 2.6.9 one doesn't either by default. It looks like I need: loss_background = yes in the "+ detail" section on the config file, but that doesn't seem to make any difference, so... 1) Is loss_background what produces those vertical lines? 2) Is there something else I need to do to enable them? (e.g. rrdtool version > n, I have 1.2.27 at the moment) Thanks in advance for any pointers... Howie From howie at thingy.com Fri Jul 19 15:20:57 2013 From: howie at thingy.com (Howard Jones) Date: Fri, 19 Jul 2013 14:20:57 +0100 Subject: [smokeping-users] does loss_background do what I think? (and why doesn't it do it?) In-Reply-To: <51E93C45.2040409@thingy.com> References: <51E93C45.2040409@thingy.com> Message-ID: <51E93D39.3030409@thingy.com> And within seconds of posting I realised I'd also moved from CGI to FastCGI, so a config change requires restarting Apache as well as Smokeping. Now I have my bars. Rubber duck debugging at work I guess! [1] Thanks, Howie [1] http://www.rubberduckdebugging.com/ On 19/07/2013 14:16, Howard Jones wrote: > Hi folks, > > I've just upgraded my 2.4.2 installation to 2.6.9, and noticed on the > website this nice looking feature where loss is shown as a vertical line > instead of just the single pixel on the median line. I'm tracking a > small/infrequent loss problem at the moment, and this would be very > useful. (I mean, like this: > http://oss.oetiker.ch/smokeping/doc/reading_detail.png) > > My 2.4.2 didn't do this, and my 2.6.9 one doesn't either by default. It > looks like I need: > loss_background = yes > in the "+ detail" section on the config file, but that doesn't seem to > make any difference, so... > > 1) Is loss_background what produces those vertical lines? > 2) Is there something else I need to do to enable them? (e.g. rrdtool > version > n, I have 1.2.27 at the moment) > > Thanks in advance for any pointers... > > Howie > > _______________________________________________ > smokeping-users mailing list > smokeping-users at lists.oetiker.ch > https://lists.oetiker.ch/cgi-bin/listinfo/smokeping-users > From steve.r.johnston at gmail.com Tue Jul 23 14:40:13 2013 From: steve.r.johnston at gmail.com (steve johnston) Date: Tue, 23 Jul 2013 05:40:13 -0700 Subject: [smokeping-users] xss attacks bug patch for 2.6.8? Message-ID: Is there a patch for version 2.6.8 for the xss attacks bug ( http://bugs.debina.org/659899 ? Thanks! -- steve.r.johnston at gmail.com 206-406-8100 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.oetiker.ch/pipermail/smokeping-users/attachments/20130723/212f9447/attachment.htm From david at schweikert.ch Thu Jul 25 22:22:21 2013 From: david at schweikert.ch (David Schweikert) Date: Thu, 25 Jul 2013 22:22:21 +0200 Subject: [smokeping-users] ANNOUNCE: fping mailing-list Message-ID: <20130725202221.GA22881@schweikert.ch> Hi, I have created a new mailing-list that is specific to fping. It will be used for future release announcements (including beta releases). Please subscribe if you are interested in fping: https://groups.google.com/group/fping-users Cheers David From thocar at free.fr Mon Jul 29 19:33:54 2013 From: thocar at free.fr (Thomas =?UTF-8?B?Q2FycmnDqQ==?=) Date: Mon, 29 Jul 2013 19:33:54 +0200 Subject: [smokeping-users] What does the grey colors means in smokeping graphs? Message-ID: <20130729193354.49e1965b@free.fr> Hello, I have started using recently smokeping to monitor latency It was easy to install on Debian, I like the graphs very much, I am looking forward to be able to produce such graphs. Also I wonder what the grey areas means ? Is it the quantiles ? What instructions are given to to RRD to have these grey zones ? From rb14060 at gmail.com Mon Jul 29 19:35:37 2013 From: rb14060 at gmail.com (Ryan Becker) Date: Mon, 29 Jul 2013 13:35:37 -0400 Subject: [smokeping-users] What does the grey colors means in smokeping graphs? In-Reply-To: <20130729193354.49e1965b@free.fr> References: <20130729193354.49e1965b@free.fr> Message-ID: I believe the gray zones are the deviation between the ping times for that round. As for generation instructions, I have no idea how SmokePing writes the RRD files for such things. On Mon, Jul 29, 2013 at 1:33 PM, Thomas Carri? wrote: > Hello, > > I have started using recently smokeping to monitor latency > > It was easy to install on Debian, I like the graphs very > much, I am looking forward to be able to produce such graphs. > > Also I wonder what the grey areas means ? > > Is it the quantiles ? What instructions are given to to RRD to have > these grey zones ? > > < > http://oss.oetiker.ch/smokeping-demo/?displaymode=n;start=2013-07-29%2016:24;end=now;target=rootns.F > > > > _______________________________________________ > 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/20130729/5061f9fa/attachment.htm