From Doerchi at web.de Fri Jan 1 15:59:09 2010 From: Doerchi at web.de (Dirk Henze) Date: Fri, 01 Jan 2010 15:59:09 +0100 Subject: [smokeping-users] fping update Message-ID: <1435959879@web.de> First of all, I wish you all a Happy new year Tobi thank you very much, but how can I activate the QoS Flag in the smokeping probes. I have tried to use the tos = 184 but if I look with tcpdump at the remote side there is no tos flag . ### Probes ### + FPing binary = /usr/bin/fping ++ QoSFPing offset = 1% blazemode = true pings=20 tos = 184 hostinterval = 10 #### ### TCPDUMP remote side ### IP (tos 0x0, ttl 64, id 23714, offset 0, flags [none], proto ICMP (1), length 84) ### Thanks and best regards, Dirk ______________________________________________________ GRATIS f?r alle WEB.DE-Nutzer: Die maxdome Movie-FLAT! Jetzt freischalten unter http://movieflat.web.de From Doerchi at web.de Fri Jan 1 16:37:36 2010 From: Doerchi at web.de (Dirk Henze) Date: Fri, 01 Jan 2010 16:37:36 +0100 Subject: [smokeping-users] fping update Message-ID: <1436003201@web.de> Sorry, I have found my mistake. I have two fpings at my server ;-). The commandline fping use /usr/local/sbin/fping and smokeping use /usr/bin/fping :-) Best regards, Dirk ______________________________________________________ GRATIS f?r alle WEB.DE-Nutzer: Die maxdome Movie-FLAT! Jetzt freischalten unter http://movieflat.web.de From tobi at oetiker.ch Fri Jan 1 17:03:33 2010 From: tobi at oetiker.ch (Tobias Oetiker) Date: Fri, 1 Jan 2010 17:03:33 +0100 (CET) Subject: [smokeping-users] fping update In-Reply-To: <1435959879@web.de> References: <1435959879@web.de> Message-ID: Hi Dirk, and when you run fping with the -O option by hand, it works ? cheers tobi Today Dirk Henze wrote: > First of all, I wish you all a Happy new year > > Tobi thank you very much, but how can I activate the QoS Flag in the smokeping probes. > I have tried to use the tos = 184 but if I look with tcpdump at the remote side there is no tos flag . > > ### Probes ### > + FPing > binary = /usr/bin/fping > > ++ QoSFPing > offset = 1% > blazemode = true > pings=20 > tos = 184 > hostinterval = 10 > > #### > > ### TCPDUMP remote side ### > > IP (tos 0x0, ttl 64, id 23714, offset 0, flags [none], proto ICMP (1), length 84) > > ### > > Thanks and best regards, > Dirk > > ______________________________________________________ > GRATIS f?r alle WEB.DE-Nutzer: Die maxdome Movie-FLAT! > Jetzt freischalten unter http://movieflat.web.de > > _______________________________________________ > smokeping-users mailing list > smokeping-users at lists.oetiker.ch > https://lists.oetiker.ch/cgi-bin/listinfo/smokeping-users > > -- Tobi Oetiker, OETIKER+PARTNER AG, Aarweg 15 CH-4600 Olten, Switzerland http://it.oetiker.ch tobi at oetiker.ch ++41 62 775 9902 / sb: -9900 From jimmyjose2980 at gmail.com Fri Jan 1 19:32:27 2010 From: jimmyjose2980 at gmail.com (Jimmyboy) Date: Sat, 2 Jan 2010 00:02:27 +0530 Subject: [smokeping-users] Regarding Database size ...... Message-ID: Hi All, I am using Smokeping 2.3 on my Ubuntu desktop machine since more than 1 month. The size of all .rra files shows up as 2.8MB ever since they have been created. Can anyone tell me how do I know till what time would Smokeping continue graphing. Is it going to be a few months, 1 year or 2, etc...? Will the size remain 2.8MB forever? Thanks, Jimmy Jose =-=-= -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.oetiker.ch/pipermail/smokeping-users/attachments/20100102/4afae50b/attachment.htm From ged at jubileegroup.co.uk Fri Jan 1 19:52:21 2010 From: ged at jubileegroup.co.uk (G.W. Haywood) Date: Fri, 1 Jan 2010 18:52:21 +0000 (GMT) Subject: [smokeping-users] Regarding Database size ...... In-Reply-To: References: Message-ID: Hi there, On Sat, 2 Jan 2010, Jimmyboy wrote: > I am using Smokeping 2.3 on my Ubuntu desktop machine since more than 1 > month. The size of all .rra files shows up as 2.8MB ever since they have > been created. http://oss.oetiker.ch/rrdtool/ -- 73, Ged. From alter3d at alter3d.ca Fri Jan 1 19:57:51 2010 From: alter3d at alter3d.ca (Peter Kristolaitis) Date: Fri, 01 Jan 2010 13:57:51 -0500 Subject: [smokeping-users] Regarding Database size ...... In-Reply-To: References: Message-ID: <4B3E45AF.40802@alter3d.ca> First of all, happy new year to everyone on the list! I hope that 2010 is a productive and fruitful year for you all. To answer the easy question first -- yes, your RRA files will be 2.8MB forever. An RRA 'database' contains a finite, static number of records, and old records are discarded as new data is put in; rrdtool makes the files large enough to handle all possible records at creation time, so your file will never grow. With regard to how long Smokeping will continue graphing -- well, forever. Because old records are cycled out when new data is put in, Smokeping will continue to operate indefinitely and will only show 'current' data. A related issue is how much *history* will be retained, and this is strictly dependent on how you've configured Smokeping (specifically, the 'step' value and the 'steps' and 'rows' data from the RRA definitions in the '*** Database ***' section of the configuration file). Example: *** Database *** step = 30 pings = 20 # cons xff steps rows AVERAGE 0.5 1 1008 AVERAGE 0.5 12 4320 MIN 0.5 12 4320 MAX 0.5 12 4320 AVERAGE 0.5 144 720 MAX 0.5 144 720 MIN 0.5 144 720 The 'step = 30' part means that Smokeping will poll (and thus generate a new RRA row) every 30 seconds. The 'steps' part of the RRA definition are how many 'step's are consolidated for a given row. In the example, we have 1, 12, and 144; this means that we're storing data at 3 different levels of granularity: 1*30 = 30 seconds, 12*30 = 360 seconds, and 144*30 = 4320 seconds. The 'rows' part of the RRA definition tells you how many records that RRA definition will hold. Using 'step', 'steps' and 'rows', you can calculate how much 'time' an RRA will cover: time in seconds = step * steps * rows So if we look at the line "AVERAGE 0.5 144 720", it will hold: time = 30 * 144 * 720 = 3,110,400 seconds (36 days) This means that you will be able to get at most 36 days of history at a granularity of 72 minutes (30*144 seconds). If you wanted to see the data more granularly (6 minutes -- 30*12 seconds), then you would have to set your graphs to show at most 30*12*4320 = 1,555,200 seconds (18 days). - Peter Jimmyboy wrote: > Hi All, > > I am using Smokeping 2.3 on my Ubuntu desktop machine since more than > 1 month. The size of all .rra files shows up as 2.8MB ever since they > have been created. > > Can anyone tell me how do I know till what time would Smokeping > continue graphing. Is it going to be a few months, 1 year or 2, > etc...? Will the size remain 2.8MB forever? > > > Thanks, > Jimmy Jose > > =-=-= > ------------------------------------------------------------------------ > > _______________________________________________ > 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/20100101/78da184f/attachment-0001.htm From jimmyjose2980 at gmail.com Mon Jan 4 15:47:13 2010 From: jimmyjose2980 at gmail.com (Jimmyboy) Date: Mon, 4 Jan 2010 20:17:13 +0530 Subject: [smokeping-users] Regarding Database size ...... In-Reply-To: <4B3E45AF.40802@alter3d.ca> References: <4B3E45AF.40802@alter3d.ca> Message-ID: Thanks Peter, for the detailed description. However, I have some doubts. 1. What does granularity mean here? How does a lower or a greater granularity affect or improve the performance of Smokeping?s graphing? In other words, how does that bother an administrator? 2. With steps=144, granularity is 72 minutes lasting for 36 days, with steps=12, granularity is 6 minutes lasting for 18 days. Which one does Smokeping use or default to? 3. With this calculation, does it mean that *?step=300?* under my **** Database **** section in *config *file will always maintain a graph of *360 days*? If yes, can I simply change the value of *step*, *steps* or *rows* to retain data for as long as I wish to? Regards, Jimmy =-=-=-= On Sat, Jan 2, 2010 at 12:27 AM, Peter Kristolaitis wrote: > First of all, happy new year to everyone on the list! I hope that 2010 is > a productive and fruitful year for you all. > > To answer the easy question first -- yes, your RRA files will be 2.8MB > forever. An RRA 'database' contains a finite, static number of records, and > old records are discarded as new data is put in; rrdtool makes the files > large enough to handle all possible records at creation time, so your file > will never grow. > > With regard to how long Smokeping will continue graphing -- well, forever. > Because old records are cycled out when new data is put in, Smokeping will > continue to operate indefinitely and will only show 'current' data. A > related issue is how much *history* will be retained, and this is strictly > dependent on how you've configured Smokeping (specifically, the 'step' value > and the 'steps' and 'rows' data from the RRA definitions in the '*** > Database ***' section of the configuration file). > > Example: > > *** Database *** > > step = 30 > pings = 20 > > # cons xff steps rows > AVERAGE 0.5 1 1008 > AVERAGE 0.5 12 4320 > MIN 0.5 12 4320 > MAX 0.5 12 4320 > AVERAGE 0.5 144 720 > MAX 0.5 144 720 > MIN 0.5 144 720 > > The 'step = 30' part means that Smokeping will poll (and thus generate a > new RRA row) every 30 seconds. > > The 'steps' part of the RRA definition are how many 'step's are > consolidated for a given row. In the example, we have 1, 12, and 144; this > means that we're storing data at 3 different levels of granularity: 1*30 = > 30 seconds, 12*30 = 360 seconds, and 144*30 = 4320 seconds. > > The 'rows' part of the RRA definition tells you how many records that RRA > definition will hold. > > Using 'step', 'steps' and 'rows', you can calculate how much 'time' an RRA > will cover: > time in seconds = step * steps * rows > > So if we look at the line "AVERAGE 0.5 144 720", it will hold: > time = 30 * 144 * 720 = 3,110,400 seconds (36 days) > > This means that you will be able to get at most 36 days of history at a > granularity of 72 minutes (30*144 seconds). If you wanted to see the data > more granularly (6 minutes -- 30*12 seconds), then you would have to set > your graphs to show at most 30*12*4320 = 1,555,200 seconds (18 days). > > - Peter > > > > Jimmyboy wrote: > > Hi All, > > I am using Smokeping 2.3 on my Ubuntu desktop machine since more than 1 > month. The size of all .rra files shows up as 2.8MB ever since they have > been created. > > Can anyone tell me how do I know till what time would Smokeping continue > graphing. Is it going to be a few months, 1 year or 2, etc...? Will the size > remain 2.8MB forever? > > > Thanks, > Jimmy Jose > > =-=-= > > ------------------------------ > > _______________________________________________ > smokeping-users mailing listsmokeping-users at lists.oetiker.chhttps://lists.oetiker.ch/cgi-bin/listinfo/smokeping-users > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.oetiker.ch/pipermail/smokeping-users/attachments/20100104/2ac947d4/attachment.htm From alter3d at alter3d.ca Mon Jan 4 16:19:23 2010 From: alter3d at alter3d.ca (Peter Kristolaitis) Date: Mon, 04 Jan 2010 10:19:23 -0500 Subject: [smokeping-users] Regarding Database size ...... In-Reply-To: References: <4B3E45AF.40802@alter3d.ca> Message-ID: <4B4206FB.9080902@alter3d.ca> Hi Jimmy; 1) Granularity is simply the level of detail at which data is recorded in the RRD file -- do we record every data point (steps = 1), or aggregate multiple data points into a single value (steps > 1)? AFAIK, there is no performance penalty either way; it's simply a matter of balancing history, presentation and disk space. 2) Smokeping (and all RRD-based applications) use ALL of them. Data is recorded at both steps=144 and steps=12. The difference comes when you draw graphs -- rrdtool will use the lowest granularity it can to draw graphs, given time constraints (that is, if you tried to draw a graph showing 20 days of history, you wouldn't have enough data at steps=12, so it would use the steps=144 data instead). 3) Keep in mind that step=300 would affect Smokeping's poll rate as well, not just the database storage. But yes, you can play with any (or all) of step, steps, and rows to retain data as long as you want. Typically what I do when deploying Smokeping is sit down and figure out a few things: - How often do I need to poll (the step setting) - How much history do I need? - How wide (in pixels) will my graphs be? (the 'width' settings in *** Presentation ***) - What time ranges will I be graphing (e.g. 6 hours, 24 hours, 7 days, 30 days, 365 days, etc) Using all that information, I'll do some quick math to figure out the steps and rows settings I need to make the graphs look nice -- that is, to use consistent and easy-to-see-sized bars (1 pixel wide bars are hard to see -- 4-8 pixels are much easier!). - Peter Jimmyboy wrote: > > Thanks Peter, for the detailed description. However, I have some doubts. > > 1. What does granularity mean here? How does a lower or a > greater granularity affect or improve the performance of Smokeping?s > graphing? In other words, how does that bother an administrator? > > 2. With steps=144, granularity is 72 minutes lasting for 36 > days, with steps=12, granularity is 6 minutes lasting for 18 days. > Which one does Smokeping use or default to? > 3. With this calculation, does it mean that *?step=300?* under > my **** Database **** section in *config *file will always maintain a > graph of *360 days*? If yes, can I simply change the value of *step*, > *steps* or *rows* to retain data for as long as I wish to? > > Regards, > Jimmy > > =-=-=-= > > > > On Sat, Jan 2, 2010 at 12:27 AM, Peter Kristolaitis > > wrote: > > First of all, happy new year to everyone on the list! I hope that > 2010 is a productive and fruitful year for you all. > > To answer the easy question first -- yes, your RRA files will be > 2.8MB forever. An RRA 'database' contains a finite, static number > of records, and old records are discarded as new data is put in; > rrdtool makes the files large enough to handle all possible > records at creation time, so your file will never grow. > > With regard to how long Smokeping will continue graphing -- well, > forever. Because old records are cycled out when new data is put > in, Smokeping will continue to operate indefinitely and will only > show 'current' data. A related issue is how much *history* will > be retained, and this is strictly dependent on how you've > configured Smokeping (specifically, the 'step' value and the > 'steps' and 'rows' data from the RRA definitions in the '*** > Database ***' section of the configuration file). > > Example: > > *** Database *** > > step = 30 > pings = 20 > > # cons xff steps rows > AVERAGE 0.5 1 1008 > AVERAGE 0.5 12 4320 > MIN 0.5 12 4320 > MAX 0.5 12 4320 > AVERAGE 0.5 144 720 > MAX 0.5 144 720 > MIN 0.5 144 720 > > The 'step = 30' part means that Smokeping will poll (and thus > generate a new RRA row) every 30 seconds. > > The 'steps' part of the RRA definition are how many 'step's are > consolidated for a given row. In the example, we have 1, 12, and > 144; this means that we're storing data at 3 different levels of > granularity: 1*30 = 30 seconds, 12*30 = 360 seconds, and 144*30 = > 4320 seconds. > > The 'rows' part of the RRA definition tells you how many records > that RRA definition will hold. > > Using 'step', 'steps' and 'rows', you can calculate how much > 'time' an RRA will cover: > time in seconds = step * steps * rows > > So if we look at the line "AVERAGE 0.5 144 720", it will hold: > time = 30 * 144 * 720 = 3,110,400 seconds (36 days) > > This means that you will be able to get at most 36 days of history > at a granularity of 72 minutes (30*144 seconds). If you wanted > to see the data more granularly (6 minutes -- 30*12 seconds), then > you would have to set your graphs to show at most 30*12*4320 = > 1,555,200 seconds (18 days). > > - Peter > > > > Jimmyboy wrote: >> Hi All, >> >> I am using Smokeping 2.3 on my Ubuntu desktop machine since more >> than 1 month. The size of all .rra files shows up as 2.8MB ever >> since they have been created. >> >> Can anyone tell me how do I know till what time would Smokeping >> continue graphing. Is it going to be a few months, 1 year or 2, >> etc...? Will the size remain 2.8MB forever? >> >> >> Thanks, >> Jimmy Jose >> >> =-=-= >> ------------------------------------------------------------------------ >> >> _______________________________________________ >> 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/20100104/ee2f9473/attachment.htm From sronan at fattoc.com Mon Jan 4 19:20:51 2010 From: sronan at fattoc.com (Shane Ronan) Date: Mon, 4 Jan 2010 13:20:51 -0500 Subject: [smokeping-users] Ping size per host Message-ID: Is there a way to change the ping size for a specific host or is this always a system wide value? thanks, Shane From alter3d at alter3d.ca Mon Jan 4 19:56:19 2010 From: alter3d at alter3d.ca (Peter Kristolaitis) Date: Mon, 04 Jan 2010 13:56:19 -0500 Subject: [smokeping-users] Ping size per host In-Reply-To: References: Message-ID: <4B4239D3.1000202@alter3d.ca> You should be able to override (most) probe settings at the individual target level. The 'probe' setting in your Targets section dynamically changes the allowed grammar (i.e. using the FPing probe will allow you to use different options at the host level compared to, say, the Curl probe). The SmokePing documentation (http://oss.oetiker.ch/smokeping/doc/smokeping_config.en.html) gives full details about the dynamic grammar stuff, but to make a long story short, you should be able to specify "packetsize = $somevalue" at some level in your target tree (and it will propagate down the tree, if applicable). - Peter Shane Ronan wrote: > Is there a way to change the ping size for a specific host or is this always a system wide value? > > thanks, > Shane > > _______________________________________________ > smokeping-users mailing list > smokeping-users at lists.oetiker.ch > https://lists.oetiker.ch/cgi-bin/listinfo/smokeping-users > From tobi at oetiker.ch Mon Jan 4 20:06:04 2010 From: tobi at oetiker.ch (Tobias Oetiker) Date: Mon, 4 Jan 2010 20:06:04 +0100 (CET) Subject: [smokeping-users] Ping size per host In-Reply-To: <4B4239D3.1000202@alter3d.ca> References: <4B4239D3.1000202@alter3d.ca> Message-ID: Hi Shane, Today Peter Kristolaitis wrote: > You should be able to override (most) probe settings at the individual > target level. The 'probe' setting in your Targets section dynamically > changes the allowed grammar (i.e. using the FPing probe will allow you > to use different options at the host level compared to, say, the Curl > probe). > > The SmokePing documentation > (http://oss.oetiker.ch/smokeping/doc/smokeping_config.en.html) gives > full details about the dynamic grammar stuff, but to make a long story > short, you should be able to specify "packetsize = $somevalue" at some > level in your target tree (and it will propagate down the tree, if > applicable). > > - Peter > > > > Shane Ronan wrote: > > Is there a way to change the ping size for a specific host or > > is this always a system wide value? for probes that are run 'per target' you can often override specific options per target ... the fping probe is special in this respect as it runs many targets with a single call to fping. You can setup multiple instances of the fping probe with different configurations though ... and switch the probe according to your requirements. cheers tobi > > > > thanks, > > Shane > > > > _______________________________________________ > > 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 > > -- Tobi Oetiker, OETIKER+PARTNER AG, Aarweg 15 CH-4600 Olten, Switzerland http://it.oetiker.ch tobi at oetiker.ch ++41 62 775 9902 / sb: -9900 From Oliver.T.Bethge at med.uni-duesseldorf.de Tue Jan 5 10:19:07 2010 From: Oliver.T.Bethge at med.uni-duesseldorf.de (Oliver.T.Bethge at med.uni-duesseldorf.de) Date: Tue, 5 Jan 2010 10:19:07 +0100 Subject: [smokeping-users] Mass remove of longtime unreachable targets Message-ID: Hello, is there a script to remove/uncomment all targets that are a long time unreachable? Input parameters could be: - Time in days that a target must be unreachable to be removed/uncommented - Switch to remove target from config or only uncomment the target + If uncomment an uncomment-string (like "##") This will enable you to remove the targets later with grep -v "##" Best regards Oliver -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.oetiker.ch/pipermail/smokeping-users/attachments/20100105/c83636b6/attachment.htm From echatham at broadvox.com Thu Jan 7 15:19:30 2010 From: echatham at broadvox.com (Eric Chatham) Date: Thu, 7 Jan 2010 09:19:30 -0500 Subject: [smokeping-users] Change Someloss Alert In-Reply-To: <4ABA3E162F60624A949503A7F960245EB1D38F20A2@CLEHBEXMS01.broadvox.local> References: <4ABA3E162F60624A949503A7F960245EB1D38F20A2@CLEHBEXMS01.broadvox.local> Message-ID: <4ABA3E162F60624A949503A7F960245EB1E5040340@CLEHBEXMS01.broadvox.local> Hello, is there a work-around for this? Thank you. From: smokeping-users-bounces at lists.oetiker.ch [mailto:smokeping-users-bounces at lists.oetiker.ch] On Behalf Of Eric Chatham Sent: Wednesday, December 23, 2009 17:23 To: smokeping-users at lists.oetiker.ch Subject: [smokeping-users] Change Someloss Alert Hello, I would like to change the "someloss" (or add a new alert) on the smokeping config to detect *any* packet loss after the third poll. How would I set the pattern up to reflect that? This is my current config right now: *** Alerts *** to = ~ from = smokealert@ ~ +someloss type = loss # in percent pattern = >0%,*12*,>0%,*12*,>0% comment = loss 3 times in a row Also, is there a way to modify the subject line of the e-mail alert? Thank you and happy holidays, Eric Chatham ________________________________ CONFIDENTIAL. This e-mail and any attached files are confidential and should be destroyed and/or returned if you are not the intended and proper recipient. ________________________________ CONFIDENTIAL. This e-mail and any attached files are confidential and should be destroyed and/or returned if you are not the intended and proper recipient. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.oetiker.ch/pipermail/smokeping-users/attachments/20100107/683b7246/attachment.htm From smokeping123 at hotmail.com Tue Jan 12 07:45:12 2010 From: smokeping123 at hotmail.com (Smokeping slt) Date: Tue, 12 Jan 2010 12:45:12 +0600 Subject: [smokeping-users] AJAX based interactive Graph Zooming NOT WORKING Message-ID: HI! Thanks again for all your help, this mailing list has proven to be VERY helpful! :) I've run into another small problem... I remember when I first had Smokeping running, if I placed my mouse cursor on the Navigator Graph, I'd get a crosshair (+), which would allow me to zoom into a specific section of the graph. This is not working anymore... I'm not getting the crosshair. Has anyone run into this before? I know it used to work... I don't think I changed any settings... Thanks again! :) _________________________________________________________________ Windows Live: Friends get your Flickr, Yelp, and Digg updates when they e-mail you. http://www.microsoft.com/middleeast/windows/windowslive/see-it-in-action/social-network-basics.aspx?ocid=PID23461::T:WLMTAGL:ON:WL:en-xm:SI_SB_3:092010 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.oetiker.ch/pipermail/smokeping-users/attachments/20100112/b6a330c6/attachment.htm From tobi at oetiker.ch Tue Jan 12 07:54:54 2010 From: tobi at oetiker.ch (Tobias Oetiker) Date: Tue, 12 Jan 2010 07:54:54 +0100 (CET) Subject: [smokeping-users] AJAX based interactive Graph Zooming NOT WORKING In-Reply-To: References: Message-ID: Hi Slt, Today Smokeping slt wrote: > > HI! > > Thanks again for all your help, this mailing list has proven to be VERY > helpful! :) > > I've run into another small problem... I remember when I first had > Smokeping running, if I placed my mouse cursor on the Navigator Graph, I'd > get a crosshair (+), which would allow me to zoom into a specific section of > the graph. > > This is not working anymore... I'm not getting the crosshair. Has anyone > run into this before? I know it used to work... I don't think I changed > any settings... > > Thanks again! :) This is fixed in trunk. You can get the snapshot from the download area .. and use the javascript files from there ... they needed updating to work with ff3.5 cheers tobi -- Tobi Oetiker, OETIKER+PARTNER AG, Aarweg 15 CH-4600 Olten, Switzerland http://it.oetiker.ch tobi at oetiker.ch ++41 62 775 9902 / sb: -9900 From smokeping123 at hotmail.com Tue Jan 12 10:14:13 2010 From: smokeping123 at hotmail.com (Smokeping slt) Date: Tue, 12 Jan 2010 15:14:13 +0600 Subject: [smokeping-users] AJAX based interactive Graph Zooming NOT WORKING In-Reply-To: References: , , Message-ID: > Date: Tue, 12 Jan 2010 09:48:38 +0100 > From: tobi at oetiker.ch > To: smokeping123 at hotmail.com > Subject: RE: [smokeping-users] AJAX based interactive Graph Zooming NOT WORKING > > Hi Slt, > > Today Smokeping slt wrote: > > > > > > > > > > Date: Tue, 12 Jan 2010 07:54:54 +0100 > > > From: tobi at oetiker.ch > > > To: smokeping123 at hotmail.com > > > CC: smokeping-users at lists.oetiker.ch > > > Subject: Re: [smokeping-users] AJAX based interactive Graph Zooming NOT WORKING > > > > > > Hi Slt, > > > > > > Today Smokeping slt wrote: > > > > > > > > HI! > > > > > > > > Thanks again for all your help, this mailing list has proven to be VERY > > > > helpful! :) > > > > > > > > I've run into another small problem... I remember when I first had > > > > Smokeping running, if I placed my mouse cursor on the Navigator Graph, I'd > > > > get a crosshair (+), which would allow me to zoom into a specific section of > > > > the graph. > > > > > > > > This is not working anymore... I'm not getting the crosshair. Has anyone > > > > run into this before? I know it used to work... I don't think I changed > > > > any settings... > > > > > > > > Thanks again! :) > > > > > > This is fixed in trunk. You can get the snapshot from the download > > > area .. and use the javascript files from there ... they needed > > > updating to work with ff3.5 > > > > > > cheers > > > tobi > > > > > > > > > > In my case Navigator Graph, crosshair (+) not working either internet exploer............pls help me > > in that case I would assume that your setup is not correct ... > check the error log of your webserver ... probably some js file > sitting in the wrong position > > cheers > tobi > > > I really appriciate the previous support and i this senario my web server logs, tail /var/log/httpd/error_log [Tue Jan 12 14:38:52 2010] [error] [client 10.64.10.76] (8)Exec format error: exec of '/var/www/cgi- bin/cropper/smokeping-zoom.js' failed, referer: http://172.25.6.222/smokeping/smokeping.cgi?target=T est.HokandaraEx [Tue Jan 12 14:38:52 2010] [error] [client 10.64.10.76] Premature end of script headers: smokeping-z oom.js, referer: http://172.25.6.222/smokeping/smokeping.cgi?target=Test.HokandaraEx [Tue Jan 12 14:38:54 2010] [error] [client 10.64.10.76] (13)Permission denied: exec of '/var/www/cgi -bin/cropper/lib/prototype.js' failed, referer: http://172.25.6.222/smokeping/smokeping.cgi?displaym ode=n;start=2010-01-12%2011:38;end=now;target=Test.HokandaraEx [Tue Jan 12 14:38:54 2010] [error] [client 10.64.10.76] Premature end of script headers: prototype.j s, referer: http://172.25.6.222/smokeping/smokeping.cgi?displaymode=n;start=2010-01-12%2011:38;end=n ow;target=Test.HokandaraEx [Tue Jan 12 14:38:54 2010] [error] [client 10.64.10.76] (13)Permission denied: exec of '/var/www/cgi -bin/cropper/lib/scriptaculous.js' failed, referer: http://172.25.6.222/smokeping/smokeping.cgi?disp laymode=n;start=2010-01-12%2011:38;end=now;target=Test.HokandaraEx [Tue Jan 12 14:38:54 2010] [error] [client 10.64.10.76] Premature end of script headers: scriptaculo us.js, referer: http://172.25.6.222/smokeping/smokeping.cgi?displaymode=n;start=2010-01-12%2011:38;e nd=now;target=Test.HokandaraEx [Tue Jan 12 14:38:54 2010] [error] [client 10.64.10.76] (13)Permission denied: exec of '/var/www/cgi -bin/cropper/cropper.js' failed, referer: http://172.25.6.222/smokeping/smokeping.cgi?displaymode=n; start=2010-01-12%2011:38;end=now;target=Test.HokandaraEx [Tue Jan 12 14:38:54 2010] [error] [client 10.64.10.76] Premature end of script headers: cropper.js, referer: http://172.25.6.222/smokeping/smokeping.cgi?displaymode=n;start=2010-01-12%2011:38;end=now ;target=Test.HokandaraEx [Tue Jan 12 14:38:54 2010] [error] [client 10.64.10.76] (8)Exec format error: exec of '/var/www/cgi- bin/cropper/smokeping-zoom.js' failed, referer: http://172.25.6.222/smokeping/smokeping.cgi?displaym ode=n;start=2010-01-12%2011:38;end=now;target=Test.HokandaraEx [Tue Jan 12 14:38:54 2010] [error] [client 10.64.10.76] Premature end of script headers: smokeping-z oom.js, referer: http://172.25.6.222/smokeping/smokeping.cgi?displaymode=n;start=2010-01-12%2011:38; end=now;target=Test.HokandaraEx pls help me to solve this proble..........all other things are working in my setup > > > > > -- > > > Tobi Oetiker, OETIKER+PARTNER AG, Aarweg 15 CH-4600 Olten, Switzerland > > > http://it.oetiker.ch tobi at oetiker.ch ++41 62 775 9902 / sb: -9900 > > > > _________________________________________________________________ > > Windows Live Hotmail: Your friends can get your Facebook updates, right from Hotmail?. > > http://www.microsoft.com/middleeast/windows/windowslive/see-it-in-action/social-network-basics.aspx?ocid=PID23461::T:WLMTAGL:ON:WL:en-xm:SI_SB_4:092009 > > -- > Tobi Oetiker, OETIKER+PARTNER AG, Aarweg 15 CH-4600 Olten, Switzerland > http://it.oetiker.ch tobi at oetiker.ch ++41 62 775 9902 / sb: -9900 _________________________________________________________________ Windows Live: Keep your friends up to date with what you do online. http://www.microsoft.com/middleeast/windows/windowslive/see-it-in-action/social-network-basics.aspx?ocid=PID23461::T:WLMTAGL:ON:WL:en-xm:SI_SB_1:092010 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.oetiker.ch/pipermail/smokeping-users/attachments/20100112/63b20445/attachment.htm From tobi at oetiker.ch Tue Jan 12 10:46:57 2010 From: tobi at oetiker.ch (Tobias Oetiker) Date: Tue, 12 Jan 2010 10:46:57 +0100 (CET) Subject: [smokeping-users] AJAX based interactive Graph Zooming NOT WORKING In-Reply-To: References: , , Message-ID: Dear Slt, Today Smokeping slt wrote: > > > > > Date: Tue, 12 Jan 2010 09:48:38 +0100 > > From: tobi at oetiker.ch > > To: smokeping123 at hotmail.com > > Subject: RE: [smokeping-users] AJAX based interactive Graph Zooming NOT WORKING > > > > Hi Slt, > > > > Today Smokeping slt wrote: > > > > > > > > > > > > > > > Date: Tue, 12 Jan 2010 07:54:54 +0100 > > > > From: tobi at oetiker.ch > > > > To: smokeping123 at hotmail.com > > > > CC: smokeping-users at lists.oetiker.ch > > > > Subject: Re: [smokeping-users] AJAX based interactive Graph Zooming NOT WORKING > > > > > > > > Hi Slt, > > > > > > > > Today Smokeping slt wrote: > > > > > > > > > > HI! > > > > > > > > > > Thanks again for all your help, this mailing list has proven to be VERY > > > > > helpful! :) > > > > > > > > > > I've run into another small problem... I remember when I first had > > > > > Smokeping running, if I placed my mouse cursor on the Navigator Graph, I'd > > > > > get a crosshair (+), which would allow me to zoom into a specific section of > > > > > the graph. > > > > > > > > > > This is not working anymore... I'm not getting the crosshair. Has anyone > > > > > run into this before? I know it used to work... I don't think I changed > > > > > any settings... > > > > > > > > > > Thanks again! :) > > > > > > > > This is fixed in trunk. You can get the snapshot from the download > > > > area .. and use the javascript files from there ... they needed > > > > updating to work with ff3.5 > > > > > > > > cheers > > > > tobi > > > > > > > > > > > > > > In my case Navigator Graph, crosshair (+) not working either internet exploer............pls help me > > > > in that case I would assume that your setup is not correct ... > > check the error log of your webserver ... probably some js file > > sitting in the wrong position > > > > cheers > > tobi > > > > > > > > > > I really appriciate the previous support and i this senario my web server logs, > > tail /var/log/httpd/error_log > > [Tue Jan 12 14:38:52 2010] [error] [client 10.64.10.76] (8)Exec format error: exec of '/var/www/cgi- > bin/cropper/smokeping-zoom.js' failed, referer: http://172.25.6.222/smokeping/smokeping.cgi?target=T > est.HokandaraEx > [Tue Jan 12 14:38:52 2010] [error] [client 10.64.10.76] Premature end of script headers: smokeping-z > oom.js, referer: http://172.25.6.222/smokeping/smokeping.cgi?target=Test.HokandaraEx > [Tue Jan 12 14:38:54 2010] [error] [client 10.64.10.76] (13)Permission denied: exec of '/var/www/cgi > -bin/cropper/lib/prototype.js' failed, referer: http://172.25.6.222/smokeping/smokeping.cgi?displaym > ode=n;start=2010-01-12%2011:38;end=now;target=Test.HokandaraEx > [Tue Jan 12 14:38:54 2010] [error] [client 10.64.10.76] Premature end of script headers: prototype.j > s, referer: http://172.25.6.222/smokeping/smokeping.cgi?displaymode=n;start=2010-01-12%2011:38;end=n > ow;target=Test.HokandaraEx > [Tue Jan 12 14:38:54 2010] [error] [client 10.64.10.76] (13)Permission denied: exec of '/var/www/cgi > -bin/cropper/lib/scriptaculous.js' failed, referer: http://172.25.6.222/smokeping/smokeping.cgi?disp > laymode=n;start=2010-01-12%2011:38;end=now;target=Test.HokandaraEx > [Tue Jan 12 14:38:54 2010] [error] [client 10.64.10.76] Premature end of script headers: scriptaculo > us.js, referer: http://172.25.6.222/smokeping/smokeping.cgi?displaymode=n;start=2010-01-12%2011:38;e > nd=now;target=Test.HokandaraEx > [Tue Jan 12 14:38:54 2010] [error] [client 10.64.10.76] (13)Permission denied: exec of '/var/www/cgi > -bin/cropper/cropper.js' failed, referer: http://172.25.6.222/smokeping/smokeping.cgi?displaymode=n; > start=2010-01-12%2011:38;end=now;target=Test.HokandaraEx > [Tue Jan 12 14:38:54 2010] [error] [client 10.64.10.76] Premature end of script headers: cropper.js, > referer: http://172.25.6.222/smokeping/smokeping.cgi?displaymode=n;start=2010-01-12%2011:38;end=now > ;target=Test.HokandaraEx > [Tue Jan 12 14:38:54 2010] [error] [client 10.64.10.76] (8)Exec format error: exec of '/var/www/cgi- > bin/cropper/smokeping-zoom.js' failed, referer: http://172.25.6.222/smokeping/smokeping.cgi?displaym > ode=n;start=2010-01-12%2011:38;end=now;target=Test.HokandaraEx > [Tue Jan 12 14:38:54 2010] [error] [client 10.64.10.76] Premature end of script headers: smokeping-z > oom.js, referer: http://172.25.6.222/smokeping/smokeping.cgi?displaymode=n;start=2010-01-12%2011:38; > end=now;target=Test.HokandaraEx > > pls help me to solve this proble..........all other things are working in my setup you can not store regular file in a cgi-bin directory ... since apache is execting to execute them ... hence all the errors ... cheers tobi > > > > > > > > > -- > > > > Tobi Oetiker, OETIKER+PARTNER AG, Aarweg 15 CH-4600 Olten, Switzerland > > > > http://it.oetiker.ch tobi at oetiker.ch ++41 62 775 9902 / sb: -9900 > > > > > > _________________________________________________________________ > > > Windows Live Hotmail: Your friends can get your Facebook updates, right from Hotmail?. > > > http://www.microsoft.com/middleeast/windows/windowslive/see-it-in-action/social-network-basics.aspx?ocid=PID23461::T:WLMTAGL:ON:WL:en-xm:SI_SB_4:092009 > > > > -- > > Tobi Oetiker, OETIKER+PARTNER AG, Aarweg 15 CH-4600 Olten, Switzerland > > http://it.oetiker.ch tobi at oetiker.ch ++41 62 775 9902 / sb: -9900 > > _________________________________________________________________ > Windows Live: Keep your friends up to date with what you do online. > http://www.microsoft.com/middleeast/windows/windowslive/see-it-in-action/social-network-basics.aspx?ocid=PID23461::T:WLMTAGL:ON:WL:en-xm:SI_SB_1:092010 -- Tobi Oetiker, OETIKER+PARTNER AG, Aarweg 15 CH-4600 Olten, Switzerland http://it.oetiker.ch tobi at oetiker.ch ++41 62 775 9902 / sb: -9900 From romeo at asti.dost.gov.ph Wed Jan 13 05:00:53 2010 From: romeo at asti.dost.gov.ph (Romeo) Date: Wed, 13 Jan 2010 12:00:53 +0800 Subject: [smokeping-users] Trouble Starting Smokeping Message-ID: <4B4D4575.2060502@asti.dost.gov.ph> Hello folks, I am new to smokeping and when I setup and installed the application when I try to run it using the command below I am getting the error shown below. Any suggestion what to do on this one? Thanks #/usr/local/etc/rc.d/smokeping start Starting smokeping. Can't locate RRDs.pm in @INC (@INC contains: /usr/local/smokeping/lib /usr/local/lib/perl5/5.8.8/BSDPAN /usr/local/lib/perl5/site_perl/5.8.8/mach /usr/local/lib/perl5/site_perl/5.8.8 /usr/local/lib/perl5/site_perl /usr/local/lib/perl5/5.8.8/mach /usr/local/lib/perl5/5.8.8 .) at /usr/local/smokeping/lib/Smokeping.pm line 13. BEGIN failed--compilation aborted at /usr/local/smokeping/lib/Smokeping.pm line 13. Compilation failed in require at /usr/local/bin/smokeping line 6. BEGIN failed--compilation aborted at /usr/local/bin/smokeping line 6. From alter3d at alter3d.ca Wed Jan 13 05:11:08 2010 From: alter3d at alter3d.ca (Peter Kristolaitis) Date: Tue, 12 Jan 2010 23:11:08 -0500 Subject: [smokeping-users] Trouble Starting Smokeping In-Reply-To: <4B4D4575.2060502@asti.dost.gov.ph> References: <4B4D4575.2060502@asti.dost.gov.ph> Message-ID: <4B4D47DC.9020405@alter3d.ca> You need to install the rrdtool Perl modules, either from source or from packages for your platform (e.g. librrds-perl on Debian Lenny). - Peter Romeo wrote: > Hello folks, > > I am new to smokeping and when I setup and installed the application > when I try to run it using the command below I am getting the error > shown below. Any suggestion what to do on this one? Thanks > > > #/usr/local/etc/rc.d/smokeping start > > Starting smokeping. > Can't locate RRDs.pm in @INC (@INC contains: /usr/local/smokeping/lib > /usr/local/lib/perl5/5.8.8/BSDPAN > /usr/local/lib/perl5/site_perl/5.8.8/mach > /usr/local/lib/perl5/site_perl/5.8.8 /usr/local/lib/perl5/site_perl > /usr/local/lib/perl5/5.8.8/mach /usr/local/lib/perl5/5.8.8 .) at > /usr/local/smokeping/lib/Smokeping.pm line 13. > BEGIN failed--compilation aborted at > /usr/local/smokeping/lib/Smokeping.pm line 13. > Compilation failed in require at /usr/local/bin/smokeping line 6. > BEGIN failed--compilation aborted at /usr/local/bin/smokeping line 6. > > _______________________________________________ > smokeping-users mailing list > smokeping-users at lists.oetiker.ch > https://lists.oetiker.ch/cgi-bin/listinfo/smokeping-users > From romeo at asti.dost.gov.ph Wed Jan 13 05:16:44 2010 From: romeo at asti.dost.gov.ph (Romeo) Date: Wed, 13 Jan 2010 12:16:44 +0800 Subject: [smokeping-users] Trouble Starting Smokeping In-Reply-To: <4B4D47DC.9020405@alter3d.ca> References: <4B4D4575.2060502@asti.dost.gov.ph> <4B4D47DC.9020405@alter3d.ca> Message-ID: <4B4D492C.1010507@asti.dost.gov.ph> Hi Peter, Do you know where can I find that package on FreeBSD 7.1? Peter Kristolaitis wrote: > You need to install the rrdtool Perl modules, either from source or from > packages for your platform (e.g. librrds-perl on Debian Lenny). > > - Peter > > > Romeo wrote: > >> Hello folks, >> >> I am new to smokeping and when I setup and installed the application >> when I try to run it using the command below I am getting the error >> shown below. Any suggestion what to do on this one? Thanks >> >> >> #/usr/local/etc/rc.d/smokeping start >> >> Starting smokeping. >> Can't locate RRDs.pm in @INC (@INC contains: /usr/local/smokeping/lib >> /usr/local/lib/perl5/5.8.8/BSDPAN >> /usr/local/lib/perl5/site_perl/5.8.8/mach >> /usr/local/lib/perl5/site_perl/5.8.8 /usr/local/lib/perl5/site_perl >> /usr/local/lib/perl5/5.8.8/mach /usr/local/lib/perl5/5.8.8 .) at >> /usr/local/smokeping/lib/Smokeping.pm line 13. >> BEGIN failed--compilation aborted at >> /usr/local/smokeping/lib/Smokeping.pm line 13. >> Compilation failed in require at /usr/local/bin/smokeping line 6. >> BEGIN failed--compilation aborted at /usr/local/bin/smokeping line 6. >> >> _______________________________________________ >> smokeping-users mailing list >> smokeping-users at lists.oetiker.ch >> https://lists.oetiker.ch/cgi-bin/listinfo/smokeping-users >> >> From alter3d at alter3d.ca Wed Jan 13 05:27:16 2010 From: alter3d at alter3d.ca (Peter Kristolaitis) Date: Tue, 12 Jan 2010 23:27:16 -0500 Subject: [smokeping-users] Trouble Starting Smokeping In-Reply-To: <4B4D492C.1010507@asti.dost.gov.ph> References: <4B4D4575.2060502@asti.dost.gov.ph> <4B4D47DC.9020405@alter3d.ca> <4B4D492C.1010507@asti.dost.gov.ph> Message-ID: <4B4D4BA4.5040402@alter3d.ca> Sorry, I haven't used FreeBSD in years. I'm an OpenBSD / Debian guy. ;) I suspect if you search through packages and ports for 'rrd' you'll get a fairly short list to look through. Look for anything that has 'rrd' and 'perl' (or 'p5') in the name; if you can't find that, try the basic 'rrdtool' package -- IIRC, some OS/distributions package the Perl modules with the rrdtool binaries. - Peter Romeo wrote: > Hi Peter, > > Do you know where can I find that package on FreeBSD 7.1? > > > > Peter Kristolaitis wrote: >> You need to install the rrdtool Perl modules, either from source or from >> packages for your platform (e.g. librrds-perl on Debian Lenny). >> >> - Peter >> >> >> Romeo wrote: >> >>> Hello folks, >>> >>> I am new to smokeping and when I setup and installed the application >>> when I try to run it using the command below I am getting the error >>> shown below. Any suggestion what to do on this one? Thanks >>> >>> >>> #/usr/local/etc/rc.d/smokeping start >>> >>> Starting smokeping. >>> Can't locate RRDs.pm in @INC (@INC contains: >>> /usr/local/smokeping/lib /usr/local/lib/perl5/5.8.8/BSDPAN >>> /usr/local/lib/perl5/site_perl/5.8.8/mach >>> /usr/local/lib/perl5/site_perl/5.8.8 /usr/local/lib/perl5/site_perl >>> /usr/local/lib/perl5/5.8.8/mach /usr/local/lib/perl5/5.8.8 .) at >>> /usr/local/smokeping/lib/Smokeping.pm line 13. >>> BEGIN failed--compilation aborted at >>> /usr/local/smokeping/lib/Smokeping.pm line 13. >>> Compilation failed in require at /usr/local/bin/smokeping line 6. >>> BEGIN failed--compilation aborted at /usr/local/bin/smokeping line 6. >>> >>> _______________________________________________ >>> smokeping-users mailing list >>> smokeping-users at lists.oetiker.ch >>> https://lists.oetiker.ch/cgi-bin/listinfo/smokeping-users >>> > From smokeping123 at hotmail.com Wed Jan 13 05:30:52 2010 From: smokeping123 at hotmail.com (Smokeping slt) Date: Wed, 13 Jan 2010 10:30:52 +0600 Subject: [smokeping-users] AJAX based interactive Graph Zooming NOT WORKING In-Reply-To: References: , , , , Message-ID: > Date: Tue, 12 Jan 2010 10:46:57 +0100 > From: tobi at oetiker.ch > To: smokeping123 at hotmail.com > CC: smokeping-users at lists.oetiker.ch > Subject: RE: [smokeping-users] AJAX based interactive Graph Zooming NOT WORKING > > Dear Slt, > > Today Smokeping slt wrote: > > > > > > > > > > Date: Tue, 12 Jan 2010 09:48:38 +0100 > > > From: tobi at oetiker.ch > > > To: smokeping123 at hotmail.com > > > Subject: RE: [smokeping-users] AJAX based interactive Graph Zooming NOT WORKING > > > > > > Hi Slt, > > > > > > Today Smokeping slt wrote: > > > > > > > > > > > > > > > > > > > > Date: Tue, 12 Jan 2010 07:54:54 +0100 > > > > > From: tobi at oetiker.ch > > > > > To: smokeping123 at hotmail.com > > > > > CC: smokeping-users at lists.oetiker.ch > > > > > Subject: Re: [smokeping-users] AJAX based interactive Graph Zooming NOT WORKING > > > > > > > > > > Hi Slt, > > > > > > > > > > Today Smokeping slt wrote: > > > > > > > > > > > > HI! > > > > > > > > > > > > Thanks again for all your help, this mailing list has proven to be VERY > > > > > > helpful! :) > > > > > > > > > > > > I've run into another small problem... I remember when I first had > > > > > > Smokeping running, if I placed my mouse cursor on the Navigator Graph, I'd > > > > > > get a crosshair (+), which would allow me to zoom into a specific section of > > > > > > the graph. > > > > > > > > > > > > This is not working anymore... I'm not getting the crosshair. Has anyone > > > > > > run into this before? I know it used to work... I don't think I changed > > > > > > any settings... > > > > > > > > > > > > Thanks again! :) > > > > > > > > > > This is fixed in trunk. You can get the snapshot from the download > > > > > area .. and use the javascript files from there ... they needed > > > > > updating to work with ff3.5 > > > > > > > > > > cheers > > > > > tobi > > > > > > > > > > > > > > > > > > In my case Navigator Graph, crosshair (+) not working either internet exploer............pls help me > > > > > > in that case I would assume that your setup is not correct ... > > > check the error log of your webserver ... probably some js file > > > sitting in the wrong position > > > > > > cheers > > > tobi > > > > > > > > > > > > > > > > > I really appriciate the previous support and i this senario my web server logs, > > > > tail /var/log/httpd/error_log > > > > [Tue Jan 12 14:38:52 2010] [error] [client 10.64.10.76] (8)Exec format error: exec of '/var/www/cgi- > > bin/cropper/smokeping-zoom.js' failed, referer: http://172.25.6.222/smokeping/smokeping.cgi?target=T > > est.HokandaraEx > > [Tue Jan 12 14:38:52 2010] [error] [client 10.64.10.76] Premature end of script headers: smokeping-z > > oom.js, referer: http://172.25.6.222/smokeping/smokeping.cgi?target=Test.HokandaraEx > > [Tue Jan 12 14:38:54 2010] [error] [client 10.64.10.76] (13)Permission denied: exec of '/var/www/cgi > > -bin/cropper/lib/prototype.js' failed, referer: http://172.25.6.222/smokeping/smokeping.cgi?displaym > > ode=n;start=2010-01-12%2011:38;end=now;target=Test.HokandaraEx > > [Tue Jan 12 14:38:54 2010] [error] [client 10.64.10.76] Premature end of script headers: prototype.j > > s, referer: http://172.25.6.222/smokeping/smokeping.cgi?displaymode=n;start=2010-01-12%2011:38;end=n > > ow;target=Test.HokandaraEx > > [Tue Jan 12 14:38:54 2010] [error] [client 10.64.10.76] (13)Permission denied: exec of '/var/www/cgi > > -bin/cropper/lib/scriptaculous.js' failed, referer: http://172.25.6.222/smokeping/smokeping.cgi?disp > > laymode=n;start=2010-01-12%2011:38;end=now;target=Test.HokandaraEx > > [Tue Jan 12 14:38:54 2010] [error] [client 10.64.10.76] Premature end of script headers: scriptaculo > > us.js, referer: http://172.25.6.222/smokeping/smokeping.cgi?displaymode=n;start=2010-01-12%2011:38;e > > nd=now;target=Test.HokandaraEx > > [Tue Jan 12 14:38:54 2010] [error] [client 10.64.10.76] (13)Permission denied: exec of '/var/www/cgi > > -bin/cropper/cropper.js' failed, referer: http://172.25.6.222/smokeping/smokeping.cgi?displaymode=n; > > start=2010-01-12%2011:38;end=now;target=Test.HokandaraEx > > [Tue Jan 12 14:38:54 2010] [error] [client 10.64.10.76] Premature end of script headers: cropper.js, > > referer: http://172.25.6.222/smokeping/smokeping.cgi?displaymode=n;start=2010-01-12%2011:38;end=now > > ;target=Test.HokandaraEx > > [Tue Jan 12 14:38:54 2010] [error] [client 10.64.10.76] (8)Exec format error: exec of '/var/www/cgi- > > bin/cropper/smokeping-zoom.js' failed, referer: http://172.25.6.222/smokeping/smokeping.cgi?displaym > > ode=n;start=2010-01-12%2011:38;end=now;target=Test.HokandaraEx > > [Tue Jan 12 14:38:54 2010] [error] [client 10.64.10.76] Premature end of script headers: smokeping-z > > oom.js, referer: http://172.25.6.222/smokeping/smokeping.cgi?displaymode=n;start=2010-01-12%2011:38; > > end=now;target=Test.HokandaraEx > > > > pls help me to solve this proble..........all other things are working in my setup > > you can not store regular file in a cgi-bin directory ... since > apache is execting to execute them ... hence all the errors ... > > cheers > tobi > I change the document directory to /usr/local/smokeping/htdoc in httpd.conf. Still errors coming. [root at c-svsmokeping htdocs]# tail /var/log/httpd/error_log [Wed Jan 13 09:56:37 2010] [error] [client 10.64.10.76] (8)Exec format error: exec of '/usr/local/smokeping/htdocs/cropper/smokeping-zoom.js' failed, referer: http://172.25.6.222/smokeping/smokeping.cgi?target=Test.KandyTC [Wed Jan 13 09:56:37 2010] [error] [client 10.64.10.76] Premature end of script headers: smokeping-zoom.js, referer: http://172.25.6.222/smokeping/smokeping.cgi?target=Test.KandyTC [Wed Jan 13 09:56:39 2010] [error] [client 10.64.10.76] (8)Exec format error: exec of '/usr/local/smokeping/htdocs/cropper/lib/prototype.js' failed, referer: http://172.25.6.222/smokeping/smokeping.cgi?displaymode=n;start=2010-01-12%2003:56;end=now;target=Test.KandyTC [Wed Jan 13 09:56:39 2010] [error] [client 10.64.10.76] Premature end of script headers: prototype.js, referer: http://172.25.6.222/smokeping/smokeping.cgi?displaymode=n;start=2010-01-12%2003:56;end=now;target=Test.KandyTC [Wed Jan 13 09:56:39 2010] [error] [client 10.64.10.76] (8)Exec format error: exec of '/usr/local/smokeping/htdocs/cropper/lib/scriptaculous.js' failed, referer: http://172.25.6.222/smokeping/smokeping.cgi?displaymode=n;start=2010-01-12%2003:56;end=now;target=Test.KandyTC [Wed Jan 13 09:56:39 2010] [error] [client 10.64.10.76] Premature end of script headers: scriptaculous.js, referer: http://172.25.6.222/smokeping/smokeping.cgi?displaymode=n;start=2010-01-12%2003:56;end=now;target=Test.KandyTC [Wed Jan 13 09:56:39 2010] [error] [client 10.64.10.76] (8)Exec format error: exec of '/usr/local/smokeping/htdocs/cropper/cropper.js' failed, referer: http://172.25.6.222/smokeping/smokeping.cgi?displaymode=n;start=2010-01-12%2003:56;end=now;target=Test.KandyTC [Wed Jan 13 09:56:39 2010] [error] [client 10.64.10.76] Premature end of script headers: cropper.js, referer: http://172.25.6.222/smokeping/smokeping.cgi?displaymode=n;start=2010-01-12%2003:56;end=now;target=Test.KandyTC [Wed Jan 13 09:56:39 2010] [error] [client 10.64.10.76] (8)Exec format error: exec of '/usr/local/smokeping/htdocs/cropper/smokeping-zoom.js' failed, referer: http://172.25.6.222/smokeping/smokeping.cgi?displaymode=n;start=2010-01-12%2003:56;end=now;target=Test.KandyTC [Wed Jan 13 09:56:39 2010] [error] [client 10.64.10.76] Premature end of script headers: smokeping-zoom.js, referer: http://172.25.6.222/smokeping/smokeping.cgi?displaymode=n;start=2010-01-12%2003:56;end=now;target=Test.KandyTC here are the permissions : cropper]# ls -al total 148 drwxr-xr-x 3 apache apache 4096 Dec 30 18:07 . drwxr-xr-x 5 apache apache 4096 Jan 3 10:28 .. -rw-r--r-- 1 root root 3583 Sep 29 2007 cropper.css -rwxr-xr-x 1 apache apache 17049 Sep 29 2007 cropper.js -rwxr-xr-x 1 apache apache 49289 Sep 29 2007 cropper.uncompressed.js drwxr-xr-x 2 root root 4096 Dec 30 18:07 lib -rw-r--r-- 1 root root 1556 Aug 21 2007 licence.txt -rw-r--r-- 1 root root 1125 Aug 21 2007 marqueeHoriz.gif -rw-r--r-- 1 root root 1141 Aug 21 2007 marqueeVert.gif -rwxr-xr-x 1 apache apache 2810 Jan 12 12:36 smokeping-zoom.js htdocs]# ls -al total 752 drwxr-xr-x 5 apache apache 4096 Jan 3 10:28 . drwxr-xr-x 10 apache apache 4096 Dec 30 18:10 .. -rw-r--r-- 1 root root 25786 Nov 11 12:09 command.history drwxr-xr-x 3 apache apache 4096 Dec 30 18:07 cropper drwxr-xr-x 4 root root 4096 Jan 3 10:29 resource drwxr-xr-x 2 root root 4096 Dec 30 18:07 script -rwxrwxrwx 1 root root 2485 Aug 11 09:09 smokeping.cgi -rwxr-xr-x 1 root root 668 Aug 13 08:44 tr.cgi -rwxr-xr-x 1 root root 663 Jul 24 2008 tr.cgi.dist -rw-r--r-- 1 root root 195 Jan 3 10:28 tr.html -rw-r--r-- 1 root root 658198 Aug 10 16:28 Tr.js _________________________________________________________________ Windows Live: Friends get your Flickr, Yelp, and Digg updates when they e-mail you. http://www.microsoft.com/middleeast/windows/windowslive/see-it-in-action/social-network-basics.aspx?ocid=PID23461::T:WLMTAGL:ON:WL:en-xm:SI_SB_3:092010 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.oetiker.ch/pipermail/smokeping-users/attachments/20100113/6132730c/attachment-0001.htm From chris at uplogon.com Wed Jan 13 05:44:49 2010 From: chris at uplogon.com (Chris Gotstein) Date: Tue, 12 Jan 2010 22:44:49 -0600 Subject: [smokeping-users] Trouble Starting Smokeping In-Reply-To: <4B4D4BA4.5040402@alter3d.ca> References: <4B4D4575.2060502@asti.dost.gov.ph> <4B4D47DC.9020405@alter3d.ca> <4B4D492C.1010507@asti.dost.gov.ph> <4B4D4BA4.5040402@alter3d.ca> Message-ID: <4B4D4FC1.1080708@uplogon.com> portupgrade -Nr rrdtool Make sure your ports tree is up-to-date portsnap fetch extract update ---- ---- ---- ---- Chris Gotstein, Sr Network Engineer, UP Logon/Computer Connection UP http://uplogon.com | +1 906 774 4847 | chris at uplogon.com Peter Kristolaitis wrote: > Sorry, I haven't used FreeBSD in years. I'm an OpenBSD / Debian guy. ;) > > I suspect if you search through packages and ports for 'rrd' you'll get > a fairly short list to look through. Look for anything that has 'rrd' > and 'perl' (or 'p5') in the name; if you can't find that, try the basic > 'rrdtool' package -- IIRC, some OS/distributions package the Perl > modules with the rrdtool binaries. > > - Peter > > > > Romeo wrote: >> Hi Peter, >> >> Do you know where can I find that package on FreeBSD 7.1? >> >> >> >> Peter Kristolaitis wrote: >>> You need to install the rrdtool Perl modules, either from source or from >>> packages for your platform (e.g. librrds-perl on Debian Lenny). >>> >>> - Peter >>> >>> >>> Romeo wrote: >>> >>>> Hello folks, >>>> >>>> I am new to smokeping and when I setup and installed the application >>>> when I try to run it using the command below I am getting the error >>>> shown below. Any suggestion what to do on this one? Thanks >>>> >>>> >>>> #/usr/local/etc/rc.d/smokeping start >>>> >>>> Starting smokeping. >>>> Can't locate RRDs.pm in @INC (@INC contains: >>>> /usr/local/smokeping/lib /usr/local/lib/perl5/5.8.8/BSDPAN >>>> /usr/local/lib/perl5/site_perl/5.8.8/mach >>>> /usr/local/lib/perl5/site_perl/5.8.8 /usr/local/lib/perl5/site_perl >>>> /usr/local/lib/perl5/5.8.8/mach /usr/local/lib/perl5/5.8.8 .) at >>>> /usr/local/smokeping/lib/Smokeping.pm line 13. >>>> BEGIN failed--compilation aborted at >>>> /usr/local/smokeping/lib/Smokeping.pm line 13. >>>> Compilation failed in require at /usr/local/bin/smokeping line 6. >>>> BEGIN failed--compilation aborted at /usr/local/bin/smokeping line 6. >>>> >>>> _______________________________________________ >>>> 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 From romeo at asti.dost.gov.ph Wed Jan 13 06:43:24 2010 From: romeo at asti.dost.gov.ph (Romeo) Date: Wed, 13 Jan 2010 13:43:24 +0800 Subject: [smokeping-users] Trouble Starting Smokeping In-Reply-To: <4B4D4FC1.1080708@uplogon.com> References: <4B4D4575.2060502@asti.dost.gov.ph> <4B4D47DC.9020405@alter3d.ca> <4B4D492C.1010507@asti.dost.gov.ph> <4B4D4BA4.5040402@alter3d.ca> <4B4D4FC1.1080708@uplogon.com> Message-ID: <4B4D5D7C.7020305@asti.dost.gov.ph> Ho Chris, after i followed your instruction below and i ran the command again; /usr/local/etc/rc.d/smokeping start Starting smokeping. ERROR: /usr/local/etc/smokeping/config, line 111: File '/home/oetiker/checkouts/smokeping/trunk/software/etc/smokeping_secrets.dist' does not exist Any suggestion? thanks Chris Gotstein wrote: > portupgrade -Nr rrdtool > > Make sure your ports tree is up-to-date > > portsnap fetch extract update > > ---- ---- ---- ---- > Chris Gotstein, Sr Network Engineer, UP Logon/Computer Connection UP > http://uplogon.com | +1 906 774 4847 | chris at uplogon.com > > Peter Kristolaitis wrote: > >> Sorry, I haven't used FreeBSD in years. I'm an OpenBSD / Debian guy. ;) >> >> I suspect if you search through packages and ports for 'rrd' you'll get >> a fairly short list to look through. Look for anything that has 'rrd' >> and 'perl' (or 'p5') in the name; if you can't find that, try the basic >> 'rrdtool' package -- IIRC, some OS/distributions package the Perl >> modules with the rrdtool binaries. >> >> - Peter >> >> >> >> Romeo wrote: >> >>> Hi Peter, >>> >>> Do you know where can I find that package on FreeBSD 7.1? >>> >>> >>> >>> Peter Kristolaitis wrote: >>> >>>> You need to install the rrdtool Perl modules, either from source or from >>>> packages for your platform (e.g. librrds-perl on Debian Lenny). >>>> >>>> - Peter >>>> >>>> >>>> Romeo wrote: >>>> >>>> >>>>> Hello folks, >>>>> >>>>> I am new to smokeping and when I setup and installed the application >>>>> when I try to run it using the command below I am getting the error >>>>> shown below. Any suggestion what to do on this one? Thanks >>>>> >>>>> >>>>> #/usr/local/etc/rc.d/smokeping start >>>>> >>>>> Starting smokeping. >>>>> Can't locate RRDs.pm in @INC (@INC contains: >>>>> /usr/local/smokeping/lib /usr/local/lib/perl5/5.8.8/BSDPAN >>>>> /usr/local/lib/perl5/site_perl/5.8.8/mach >>>>> /usr/local/lib/perl5/site_perl/5.8.8 /usr/local/lib/perl5/site_perl >>>>> /usr/local/lib/perl5/5.8.8/mach /usr/local/lib/perl5/5.8.8 .) at >>>>> /usr/local/smokeping/lib/Smokeping.pm line 13. >>>>> BEGIN failed--compilation aborted at >>>>> /usr/local/smokeping/lib/Smokeping.pm line 13. >>>>> Compilation failed in require at /usr/local/bin/smokeping line 6. >>>>> BEGIN failed--compilation aborted at /usr/local/bin/smokeping line 6. >>>>> >>>>> _______________________________________________ >>>>> 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 >> From romeo at asti.dost.gov.ph Wed Jan 13 06:53:32 2010 From: romeo at asti.dost.gov.ph (Romeo) Date: Wed, 13 Jan 2010 13:53:32 +0800 Subject: [smokeping-users] Trouble Starting Smokeping In-Reply-To: <4B4D5D7C.7020305@asti.dost.gov.ph> References: <4B4D4575.2060502@asti.dost.gov.ph> <4B4D47DC.9020405@alter3d.ca> <4B4D492C.1010507@asti.dost.gov.ph> <4B4D4BA4.5040402@alter3d.ca> <4B4D4FC1.1080708@uplogon.com> <4B4D5D7C.7020305@asti.dost.gov.ph> Message-ID: <4B4D5FDC.2000805@asti.dost.gov.ph> When I checked the error on line 111 under /usr/local/etc/smokeping/config . The error is under Slaves part shown below; *** Slaves *** secrets=/home/oetiker/checkouts/smokeping/trunk/software/etc/smokeping_secrets.dist +boomer display_name=boomer color=0000ff +slave2 any idea what to do on this? thanks Romeo wrote: > Ho Chris, > > after i followed your instruction below and i ran the command again; > > /usr/local/etc/rc.d/smokeping start > > Starting smokeping. > ERROR: /usr/local/etc/smokeping/config, line 111: File > '/home/oetiker/checkouts/smokeping/trunk/software/etc/smokeping_secrets.dist' > does not exist > > > Any suggestion? thanks > > Chris Gotstein wrote: >> portupgrade -Nr rrdtool >> >> Make sure your ports tree is up-to-date >> >> portsnap fetch extract update >> >> ---- ---- ---- ---- >> Chris Gotstein, Sr Network Engineer, UP Logon/Computer Connection UP >> http://uplogon.com | +1 906 774 4847 | chris at uplogon.com >> >> Peter Kristolaitis wrote: >> >>> Sorry, I haven't used FreeBSD in years. I'm an OpenBSD / Debian >>> guy. ;) >>> >>> I suspect if you search through packages and ports for 'rrd' you'll get >>> a fairly short list to look through. Look for anything that has 'rrd' >>> and 'perl' (or 'p5') in the name; if you can't find that, try the basic >>> 'rrdtool' package -- IIRC, some OS/distributions package the Perl >>> modules with the rrdtool binaries. >>> >>> - Peter >>> >>> >>> >>> Romeo wrote: >>> >>>> Hi Peter, >>>> >>>> Do you know where can I find that package on FreeBSD 7.1? >>>> >>>> >>>> >>>> Peter Kristolaitis wrote: >>>> >>>>> You need to install the rrdtool Perl modules, either from source >>>>> or from >>>>> packages for your platform (e.g. librrds-perl on Debian Lenny). >>>>> >>>>> - Peter >>>>> >>>>> >>>>> Romeo wrote: >>>>> >>>>> >>>>>> Hello folks, >>>>>> >>>>>> I am new to smokeping and when I setup and installed the application >>>>>> when I try to run it using the command below I am getting the error >>>>>> shown below. Any suggestion what to do on this one? Thanks >>>>>> >>>>>> >>>>>> #/usr/local/etc/rc.d/smokeping start >>>>>> >>>>>> Starting smokeping. >>>>>> Can't locate RRDs.pm in @INC (@INC contains: >>>>>> /usr/local/smokeping/lib /usr/local/lib/perl5/5.8.8/BSDPAN >>>>>> /usr/local/lib/perl5/site_perl/5.8.8/mach >>>>>> /usr/local/lib/perl5/site_perl/5.8.8 /usr/local/lib/perl5/site_perl >>>>>> /usr/local/lib/perl5/5.8.8/mach /usr/local/lib/perl5/5.8.8 .) at >>>>>> /usr/local/smokeping/lib/Smokeping.pm line 13. >>>>>> BEGIN failed--compilation aborted at >>>>>> /usr/local/smokeping/lib/Smokeping.pm line 13. >>>>>> Compilation failed in require at /usr/local/bin/smokeping line 6. >>>>>> BEGIN failed--compilation aborted at /usr/local/bin/smokeping >>>>>> line 6. >>>>>> >>>>>> _______________________________________________ >>>>>> 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 >>> > > From tobi at oetiker.ch Wed Jan 13 06:58:54 2010 From: tobi at oetiker.ch (Tobias Oetiker) Date: Wed, 13 Jan 2010 06:58:54 +0100 (CET) Subject: [smokeping-users] AJAX based interactive Graph Zooming NOT WORKING In-Reply-To: References: , , , , Message-ID: Hi Slt, Today Smokeping slt wrote: > > I change the document directory to /usr/local/smokeping/htdoc in httpd.conf. Still errors coming. > > > [root at c-svsmokeping htdocs]# tail /var/log/httpd/error_log > [Wed Jan 13 09:56:37 2010] [error] [client 10.64.10.76] (8)Exec format error: exec of '/usr/local/smokeping/htdocs/cropper/smokeping-zoom.js' failed, referer: http://172.25.6.222/smokeping/smokeping.cgi?target=Test.KandyTC > [Wed Jan 13 09:56:37 2010] [error] [client 10.64.10.76] Premature end of script headers: smokeping-zoom.js, referer: http://172.25.6.222/smokeping/smokeping.cgi?target=Test.KandyTC > [Wed Jan 13 09:56:39 2010] [error] [client 10.64.10.76] (8)Exec format error: exec of '/usr/local/smokeping/htdocs/cropper/lib/prototype.js' failed, referer: http://172.25.6.222/smokeping/smokeping.cgi?displaymode=n;start=2010-01-12%2003:56;end=now;target=Test.KandyTC > [Wed Jan 13 09:56:39 2010] [error] [client 10.64.10.76] Premature end of script headers: prototype.js, referer: http://172.25.6.222/smokeping/smokeping.cgi?displaymode=n;start=2010-01-12%2003:56;end=now;target=Test.KandyTC > [Wed Jan 13 09:56:39 2010] [error] [client 10.64.10.76] (8)Exec format error: exec of '/usr/local/smokeping/htdocs/cropper/lib/scriptaculous.js' failed, referer: http://172.25.6.222/smokeping/smokeping.cgi?displaymode=n;start=2010-01-12%2003:56;end=now;target=Test.KandyTC > [Wed Jan 13 09:56:39 2010] [error] [client 10.64.10.76] Premature end of script headers: scriptaculous.js, referer: http://172.25.6.222/smokeping/smokeping.cgi?displaymode=n;start=2010-01-12%2003:56;end=now;target=Test.KandyTC > [Wed Jan 13 09:56:39 2010] [error] [client 10.64.10.76] (8)Exec format error: exec of '/usr/local/smokeping/htdocs/cropper/cropper.js' failed, referer: http://172.25.6.222/smokeping/smokeping.cgi?displaymode=n;start=2010-01-12%2003:56;end=now;target=Test.KandyTC > [Wed Jan 13 09:56:39 2010] [error] [client 10.64.10.76] Premature end of script headers: cropper.js, referer: http://172.25.6.222/smokeping/smokeping.cgi?displaymode=n;start=2010-01-12%2003:56;end=now;target=Test.KandyTC > [Wed Jan 13 09:56:39 2010] [error] [client 10.64.10.76] (8)Exec format error: exec of '/usr/local/smokeping/htdocs/cropper/smokeping-zoom.js' failed, referer: http://172.25.6.222/smokeping/smokeping.cgi?displaymode=n;start=2010-01-12%2003:56;end=now;target=Test.KandyTC > [Wed Jan 13 09:56:39 2010] [error] [client 10.64.10.76] Premature end of script headers: smokeping-zoom.js, referer: http://172.25.6.222/smokeping/smokeping.cgi?displaymode=n;start=2010-01-12%2003:56;end=now;target=Test.KandyTC > > > here are the permissions : > > > cropper]# ls -al > total 148 > drwxr-xr-x 3 apache apache 4096 Dec 30 18:07 . > drwxr-xr-x 5 apache apache 4096 Jan 3 10:28 .. > -rw-r--r-- 1 root root 3583 Sep 29 2007 cropper.css > -rwxr-xr-x 1 apache apache 17049 Sep 29 2007 cropper.js > -rwxr-xr-x 1 apache apache 49289 Sep 29 2007 cropper.uncompressed.js > drwxr-xr-x 2 root root 4096 Dec 30 18:07 lib > -rw-r--r-- 1 root root 1556 Aug 21 2007 licence.txt > -rw-r--r-- 1 root root 1125 Aug 21 2007 marqueeHoriz.gif > -rw-r--r-- 1 root root 1141 Aug 21 2007 marqueeVert.gif > -rwxr-xr-x 1 apache apache 2810 Jan 12 12:36 smokeping-zoom.js > > htdocs]# ls -al > total 752 > drwxr-xr-x 5 apache apache 4096 Jan 3 10:28 . > drwxr-xr-x 10 apache apache 4096 Dec 30 18:10 .. > -rw-r--r-- 1 root root 25786 Nov 11 12:09 command.history > drwxr-xr-x 3 apache apache 4096 Dec 30 18:07 cropper > drwxr-xr-x 4 root root 4096 Jan 3 10:29 resource > drwxr-xr-x 2 root root 4096 Dec 30 18:07 script > -rwxrwxrwx 1 root root 2485 Aug 11 09:09 smokeping.cgi > -rwxr-xr-x 1 root root 668 Aug 13 08:44 tr.cgi > -rwxr-xr-x 1 root root 663 Jul 24 2008 tr.cgi.dist > -rw-r--r-- 1 root root 195 Jan 3 10:28 tr.html > -rw-r--r-- 1 root root 658198 Aug 10 16:28 Tr.js check out you webserver configuration. for some reason it is trying to execute the javascript files ... there must be some config that is causing this ... also you should NOT have the execute bits set on the js files ... note js is running on the browser and not on the server. cheers tobi > > > > > > > _________________________________________________________________ > Windows Live: Friends get your Flickr, Yelp, and Digg updates when they e-mail you. > http://www.microsoft.com/middleeast/windows/windowslive/see-it-in-action/social-network-basics.aspx?ocid=PID23461::T:WLMTAGL:ON:WL:en-xm:SI_SB_3:092010 -- Tobi Oetiker, OETIKER+PARTNER AG, Aarweg 15 CH-4600 Olten, Switzerland http://it.oetiker.ch tobi at oetiker.ch ++41 62 775 9902 / sb: -9900 From romeo at asti.dost.gov.ph Wed Jan 13 07:35:55 2010 From: romeo at asti.dost.gov.ph (Romeo) Date: Wed, 13 Jan 2010 14:35:55 +0800 Subject: [smokeping-users] Trouble Starting Smokeping In-Reply-To: <4B4D682E.6010302@uplogon.com> References: <4B4D4575.2060502@asti.dost.gov.ph> <4B4D47DC.9020405@alter3d.ca> <4B4D492C.1010507@asti.dost.gov.ph> <4B4D4BA4.5040402@alter3d.ca> <4B4D4FC1.1080708@uplogon.com> <4B4D5D7C.7020305@asti.dost.gov.ph> <4B4D5FDC.2000805@asti.dost.gov.ph> <4B4D682E.6010302@uplogon.com> Message-ID: <4B4D69CB.8070602@asti.dost.gov.ph> Hi Chris, After commented slaves and start smokeping i got the result below; # /usr/local/etc/rc.d/smokeping start Starting smokeping. Note: logging to syslog as local0/info. Daemonizing /usr/local/bin/smokeping ... romeo# /usr/local/etc/rc.d/smokeping restart Stopping smokeping. Starting smokeping. Note: logging to syslog as local0/info. Daemonizing /usr/local/bin/smokeping What does daemonizing means? does it mean smokeping is running now? thanks Chris Gotstein wrote: > If you aren't using slaves, then just comment out all those lines. > It's just there as an example for setting up a slave. > > Romeo wrote: >> When I checked the error on line 111 under >> /usr/local/etc/smokeping/config . The error is under Slaves part >> shown below; >> >> >> *** Slaves *** >> secrets=/home/oetiker/checkouts/smokeping/trunk/software/etc/smokeping_secrets.dist >> >> +boomer >> display_name=boomer >> color=0000ff >> +slave2 >> >> >> any idea what to do on this? thanks >> >> >> >> Romeo wrote: >>> Ho Chris, >>> >>> after i followed your instruction below and i ran the command again; >>> >>> /usr/local/etc/rc.d/smokeping start >>> >>> Starting smokeping. >>> ERROR: /usr/local/etc/smokeping/config, line 111: File >>> '/home/oetiker/checkouts/smokeping/trunk/software/etc/smokeping_secrets.dist' >>> does not exist >>> >>> >>> Any suggestion? thanks >>> >>> Chris Gotstein wrote: >>>> portupgrade -Nr rrdtool >>>> >>>> Make sure your ports tree is up-to-date >>>> >>>> portsnap fetch extract update >>>> >>>> ---- ---- ---- ---- >>>> Chris Gotstein, Sr Network Engineer, UP Logon/Computer Connection UP >>>> http://uplogon.com | +1 906 774 4847 | chris at uplogon.com >>>> >>>> Peter Kristolaitis wrote: >>>> >>>>> Sorry, I haven't used FreeBSD in years. I'm an OpenBSD / Debian >>>>> guy. ;) >>>>> >>>>> I suspect if you search through packages and ports for 'rrd' >>>>> you'll get >>>>> a fairly short list to look through. Look for anything that has >>>>> 'rrd' >>>>> and 'perl' (or 'p5') in the name; if you can't find that, try the >>>>> basic >>>>> 'rrdtool' package -- IIRC, some OS/distributions package the Perl >>>>> modules with the rrdtool binaries. >>>>> >>>>> - Peter >>>>> >>>>> >>>>> >>>>> Romeo wrote: >>>>> >>>>>> Hi Peter, >>>>>> >>>>>> Do you know where can I find that package on FreeBSD 7.1? >>>>>> >>>>>> >>>>>> >>>>>> Peter Kristolaitis wrote: >>>>>> >>>>>>> You need to install the rrdtool Perl modules, either from source >>>>>>> or from >>>>>>> packages for your platform (e.g. librrds-perl on Debian Lenny). >>>>>>> >>>>>>> - Peter >>>>>>> >>>>>>> >>>>>>> Romeo wrote: >>>>>>> >>>>>>> >>>>>>>> Hello folks, >>>>>>>> >>>>>>>> I am new to smokeping and when I setup and installed the >>>>>>>> application >>>>>>>> when I try to run it using the command below I am getting the >>>>>>>> error >>>>>>>> shown below. Any suggestion what to do on this one? Thanks >>>>>>>> >>>>>>>> >>>>>>>> #/usr/local/etc/rc.d/smokeping start >>>>>>>> >>>>>>>> Starting smokeping. >>>>>>>> Can't locate RRDs.pm in @INC (@INC contains: >>>>>>>> /usr/local/smokeping/lib /usr/local/lib/perl5/5.8.8/BSDPAN >>>>>>>> /usr/local/lib/perl5/site_perl/5.8.8/mach >>>>>>>> /usr/local/lib/perl5/site_perl/5.8.8 >>>>>>>> /usr/local/lib/perl5/site_perl >>>>>>>> /usr/local/lib/perl5/5.8.8/mach /usr/local/lib/perl5/5.8.8 .) at >>>>>>>> /usr/local/smokeping/lib/Smokeping.pm line 13. >>>>>>>> BEGIN failed--compilation aborted at >>>>>>>> /usr/local/smokeping/lib/Smokeping.pm line 13. >>>>>>>> Compilation failed in require at /usr/local/bin/smokeping line 6. >>>>>>>> BEGIN failed--compilation aborted at /usr/local/bin/smokeping >>>>>>>> line 6. >>>>>>>> >>>>>>>> _______________________________________________ >>>>>>>> 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 >>>>> >>> >>> >> > From romeo at asti.dost.gov.ph Wed Jan 13 08:20:41 2010 From: romeo at asti.dost.gov.ph (Romeo) Date: Wed, 13 Jan 2010 15:20:41 +0800 Subject: [smokeping-users] Trouble Starting Smokeping In-Reply-To: <4B4D6A5B.1050509@uplogon.com> References: <4B4D4575.2060502@asti.dost.gov.ph> <4B4D47DC.9020405@alter3d.ca> <4B4D492C.1010507@asti.dost.gov.ph> <4B4D4BA4.5040402@alter3d.ca> <4B4D4FC1.1080708@uplogon.com> <4B4D5D7C.7020305@asti.dost.gov.ph> <4B4D5FDC.2000805@asti.dost.gov.ph> <4B4D682E.6010302@uplogon.com> <4B4D69CB.8070602@asti.dost.gov.ph> <4B4D6A5B.1050509@uplogon.com> Message-ID: <4B4D7449.6010809@asti.dost.gov.ph> Thanks.. But I still have a problem, when I check my URL http://myaddress/smokeping its says page can not be displayed but if I remove the smokeping just http://my address/ it will display the directory. when I start the apache22 it says # /usr/local/etc/rc.d/apache22 start /usr/local/etc/rc.d/apache22: Command not found. # /usr/local/sbin/apachectl start ( it will start the program) what to do with this this? thanks Chris Gotstein wrote: > Correct. Daemonizing means that is running in the background as a > process. Once you issue the start or restart, run the command: > > ps -aux > > You should see a line that says /usr/local/bin/smokeping > > If you see that then you know it's running. > > Romeo wrote: >> Hi Chris, >> >> After commented slaves and start smokeping i got the result below; >> >> # /usr/local/etc/rc.d/smokeping start >> Starting smokeping. >> Note: logging to syslog as local0/info. >> Daemonizing /usr/local/bin/smokeping ... >> romeo# /usr/local/etc/rc.d/smokeping restart >> Stopping smokeping. >> Starting smokeping. >> Note: logging to syslog as local0/info. >> Daemonizing /usr/local/bin/smokeping >> >> What does daemonizing means? does it mean smokeping is running now? >> thanks >> >> >> >> Chris Gotstein wrote: >>> If you aren't using slaves, then just comment out all those lines. >>> It's just there as an example for setting up a slave. >>> >>> Romeo wrote: >>>> When I checked the error on line 111 under >>>> /usr/local/etc/smokeping/config . The error is under Slaves part >>>> shown below; >>>> >>>> >>>> *** Slaves *** >>>> secrets=/home/oetiker/checkouts/smokeping/trunk/software/etc/smokeping_secrets.dist >>>> >>>> +boomer >>>> display_name=boomer >>>> color=0000ff >>>> +slave2 >>>> >>>> >>>> any idea what to do on this? thanks >>>> >>>> >>>> >>>> Romeo wrote: >>>>> Ho Chris, >>>>> >>>>> after i followed your instruction below and i ran the command again; >>>>> >>>>> /usr/local/etc/rc.d/smokeping start >>>>> >>>>> Starting smokeping. >>>>> ERROR: /usr/local/etc/smokeping/config, line 111: File >>>>> '/home/oetiker/checkouts/smokeping/trunk/software/etc/smokeping_secrets.dist' >>>>> does not exist >>>>> >>>>> >>>>> Any suggestion? thanks >>>>> >>>>> Chris Gotstein wrote: >>>>>> portupgrade -Nr rrdtool >>>>>> >>>>>> Make sure your ports tree is up-to-date >>>>>> >>>>>> portsnap fetch extract update >>>>>> >>>>>> ---- ---- ---- ---- >>>>>> Chris Gotstein, Sr Network Engineer, UP Logon/Computer Connection UP >>>>>> http://uplogon.com | +1 906 774 4847 | chris at uplogon.com >>>>>> >>>>>> Peter Kristolaitis wrote: >>>>>> >>>>>>> Sorry, I haven't used FreeBSD in years. I'm an OpenBSD / Debian >>>>>>> guy. ;) >>>>>>> >>>>>>> I suspect if you search through packages and ports for 'rrd' >>>>>>> you'll get >>>>>>> a fairly short list to look through. Look for anything that has >>>>>>> 'rrd' >>>>>>> and 'perl' (or 'p5') in the name; if you can't find that, try >>>>>>> the basic >>>>>>> 'rrdtool' package -- IIRC, some OS/distributions package the Perl >>>>>>> modules with the rrdtool binaries. >>>>>>> >>>>>>> - Peter >>>>>>> >>>>>>> >>>>>>> >>>>>>> Romeo wrote: >>>>>>> >>>>>>>> Hi Peter, >>>>>>>> >>>>>>>> Do you know where can I find that package on FreeBSD 7.1? >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> Peter Kristolaitis wrote: >>>>>>>> >>>>>>>>> You need to install the rrdtool Perl modules, either from >>>>>>>>> source or from >>>>>>>>> packages for your platform (e.g. librrds-perl on Debian Lenny). >>>>>>>>> >>>>>>>>> - Peter >>>>>>>>> >>>>>>>>> >>>>>>>>> Romeo wrote: >>>>>>>>> >>>>>>>>> >>>>>>>>>> Hello folks, >>>>>>>>>> >>>>>>>>>> I am new to smokeping and when I setup and installed the >>>>>>>>>> application >>>>>>>>>> when I try to run it using the command below I am getting the >>>>>>>>>> error >>>>>>>>>> shown below. Any suggestion what to do on this one? Thanks >>>>>>>>>> >>>>>>>>>> >>>>>>>>>> #/usr/local/etc/rc.d/smokeping start >>>>>>>>>> >>>>>>>>>> Starting smokeping. >>>>>>>>>> Can't locate RRDs.pm in @INC (@INC contains: >>>>>>>>>> /usr/local/smokeping/lib /usr/local/lib/perl5/5.8.8/BSDPAN >>>>>>>>>> /usr/local/lib/perl5/site_perl/5.8.8/mach >>>>>>>>>> /usr/local/lib/perl5/site_perl/5.8.8 >>>>>>>>>> /usr/local/lib/perl5/site_perl >>>>>>>>>> /usr/local/lib/perl5/5.8.8/mach /usr/local/lib/perl5/5.8.8 .) at >>>>>>>>>> /usr/local/smokeping/lib/Smokeping.pm line 13. >>>>>>>>>> BEGIN failed--compilation aborted at >>>>>>>>>> /usr/local/smokeping/lib/Smokeping.pm line 13. >>>>>>>>>> Compilation failed in require at /usr/local/bin/smokeping >>>>>>>>>> line 6. >>>>>>>>>> BEGIN failed--compilation aborted at /usr/local/bin/smokeping >>>>>>>>>> line 6. >>>>>>>>>> >>>>>>>>>> _______________________________________________ >>>>>>>>>> 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 >>>>>>> >>>>> >>>>> >>>> >>> >> > From romeo at asti.dost.gov.ph Wed Jan 13 09:01:37 2010 From: romeo at asti.dost.gov.ph (Romeo) Date: Wed, 13 Jan 2010 16:01:37 +0800 Subject: [smokeping-users] Trouble Starting Smokeping In-Reply-To: <4B4D750C.5090301@uplogon.com> References: <4B4D4575.2060502@asti.dost.gov.ph> <4B4D47DC.9020405@alter3d.ca> <4B4D492C.1010507@asti.dost.gov.ph> <4B4D4BA4.5040402@alter3d.ca> <4B4D4FC1.1080708@uplogon.com> <4B4D5D7C.7020305@asti.dost.gov.ph> <4B4D5FDC.2000805@asti.dost.gov.ph> <4B4D682E.6010302@uplogon.com> <4B4D69CB.8070602@asti.dost.gov.ph> <4B4D6A5B.1050509@uplogon.com> <4B4D7449.6010809@asti.dost.gov.ph> <4B4D750C.5090301@uplogon.com> Message-ID: <4B4D7DE1.4080703@asti.dost.gov.ph> There was an old version apache 1.3.4_1 when I try to install apache22 there's an error because it can't install apache22 because there is existing one. So do i need to repeat everything I've done by deinstall smokeping? I think for me to erase apache 1.3 i need to deinstall smokeping first? this is the config I've done; |# find /usr/local/smokeping/htdocs/img -type d -exec chmod 777 {} \; # find /usr/local/smokeping/htdocs/img -type f -exec chmod 666 {} \;| Chris Gotstein wrote: > Did you install apache using the ports system? > > Did you put in the generated smokeping config into the apache config > file? You also may need to set permissions on the smokeping.cgi file > to 755. > > Romeo wrote: >> Thanks.. But I still have a problem, when I check my URL >> http://myaddress/smokeping its says page can not be displayed but if >> I remove the smokeping just http://my address/ it will display the >> directory. when I start the apache22 it says >> >> # /usr/local/etc/rc.d/apache22 start >> /usr/local/etc/rc.d/apache22: Command not found. >> >> # /usr/local/sbin/apachectl start ( it will start the program) >> >> what to do with this this? thanks >> >> >> >> Chris Gotstein wrote: >>> Correct. Daemonizing means that is running in the background as a >>> process. Once you issue the start or restart, run the command: >>> >>> ps -aux >>> >>> You should see a line that says /usr/local/bin/smokeping >>> >>> If you see that then you know it's running. >>> >>> Romeo wrote: >>>> Hi Chris, >>>> >>>> After commented slaves and start smokeping i got the result below; >>>> >>>> # /usr/local/etc/rc.d/smokeping start >>>> Starting smokeping. >>>> Note: logging to syslog as local0/info. >>>> Daemonizing /usr/local/bin/smokeping ... >>>> romeo# /usr/local/etc/rc.d/smokeping restart >>>> Stopping smokeping. >>>> Starting smokeping. >>>> Note: logging to syslog as local0/info. >>>> Daemonizing /usr/local/bin/smokeping >>>> >>>> What does daemonizing means? does it mean smokeping is running now? >>>> thanks >>>> >>>> >>>> >>>> Chris Gotstein wrote: >>>>> If you aren't using slaves, then just comment out all those >>>>> lines. It's just there as an example for setting up a slave. >>>>> >>>>> Romeo wrote: >>>>>> When I checked the error on line 111 under >>>>>> /usr/local/etc/smokeping/config . The error is under Slaves part >>>>>> shown below; >>>>>> >>>>>> >>>>>> *** Slaves *** >>>>>> secrets=/home/oetiker/checkouts/smokeping/trunk/software/etc/smokeping_secrets.dist >>>>>> >>>>>> +boomer >>>>>> display_name=boomer >>>>>> color=0000ff >>>>>> +slave2 >>>>>> >>>>>> >>>>>> any idea what to do on this? thanks >>>>>> >>>>>> >>>>>> >>>>>> Romeo wrote: >>>>>>> Ho Chris, >>>>>>> >>>>>>> after i followed your instruction below and i ran the command >>>>>>> again; >>>>>>> >>>>>>> /usr/local/etc/rc.d/smokeping start >>>>>>> >>>>>>> Starting smokeping. >>>>>>> ERROR: /usr/local/etc/smokeping/config, line 111: File >>>>>>> '/home/oetiker/checkouts/smokeping/trunk/software/etc/smokeping_secrets.dist' >>>>>>> does not exist >>>>>>> >>>>>>> >>>>>>> Any suggestion? thanks >>>>>>> >>>>>>> Chris Gotstein wrote: >>>>>>>> portupgrade -Nr rrdtool >>>>>>>> >>>>>>>> Make sure your ports tree is up-to-date >>>>>>>> >>>>>>>> portsnap fetch extract update >>>>>>>> >>>>>>>> ---- ---- ---- ---- >>>>>>>> Chris Gotstein, Sr Network Engineer, UP Logon/Computer >>>>>>>> Connection UP >>>>>>>> http://uplogon.com | +1 906 774 4847 | chris at uplogon.com >>>>>>>> >>>>>>>> Peter Kristolaitis wrote: >>>>>>>> >>>>>>>>> Sorry, I haven't used FreeBSD in years. I'm an OpenBSD / >>>>>>>>> Debian guy. ;) >>>>>>>>> >>>>>>>>> I suspect if you search through packages and ports for 'rrd' >>>>>>>>> you'll get >>>>>>>>> a fairly short list to look through. Look for anything that >>>>>>>>> has 'rrd' >>>>>>>>> and 'perl' (or 'p5') in the name; if you can't find that, try >>>>>>>>> the basic >>>>>>>>> 'rrdtool' package -- IIRC, some OS/distributions package the Perl >>>>>>>>> modules with the rrdtool binaries. >>>>>>>>> >>>>>>>>> - Peter >>>>>>>>> >>>>>>>>> >>>>>>>>> >>>>>>>>> Romeo wrote: >>>>>>>>> >>>>>>>>>> Hi Peter, >>>>>>>>>> >>>>>>>>>> Do you know where can I find that package on FreeBSD 7.1? >>>>>>>>>> >>>>>>>>>> >>>>>>>>>> >>>>>>>>>> Peter Kristolaitis wrote: >>>>>>>>>> >>>>>>>>>>> You need to install the rrdtool Perl modules, either from >>>>>>>>>>> source or from >>>>>>>>>>> packages for your platform (e.g. librrds-perl on Debian Lenny). >>>>>>>>>>> >>>>>>>>>>> - Peter >>>>>>>>>>> >>>>>>>>>>> >>>>>>>>>>> Romeo wrote: >>>>>>>>>>> >>>>>>>>>>> >>>>>>>>>>>> Hello folks, >>>>>>>>>>>> >>>>>>>>>>>> I am new to smokeping and when I setup and installed the >>>>>>>>>>>> application >>>>>>>>>>>> when I try to run it using the command below I am getting >>>>>>>>>>>> the error >>>>>>>>>>>> shown below. Any suggestion what to do on this one? Thanks >>>>>>>>>>>> >>>>>>>>>>>> >>>>>>>>>>>> #/usr/local/etc/rc.d/smokeping start >>>>>>>>>>>> >>>>>>>>>>>> Starting smokeping. >>>>>>>>>>>> Can't locate RRDs.pm in @INC (@INC contains: >>>>>>>>>>>> /usr/local/smokeping/lib /usr/local/lib/perl5/5.8.8/BSDPAN >>>>>>>>>>>> /usr/local/lib/perl5/site_perl/5.8.8/mach >>>>>>>>>>>> /usr/local/lib/perl5/site_perl/5.8.8 >>>>>>>>>>>> /usr/local/lib/perl5/site_perl >>>>>>>>>>>> /usr/local/lib/perl5/5.8.8/mach /usr/local/lib/perl5/5.8.8 >>>>>>>>>>>> .) at >>>>>>>>>>>> /usr/local/smokeping/lib/Smokeping.pm line 13. >>>>>>>>>>>> BEGIN failed--compilation aborted at >>>>>>>>>>>> /usr/local/smokeping/lib/Smokeping.pm line 13. >>>>>>>>>>>> Compilation failed in require at /usr/local/bin/smokeping >>>>>>>>>>>> line 6. >>>>>>>>>>>> BEGIN failed--compilation aborted at >>>>>>>>>>>> /usr/local/bin/smokeping line 6. >>>>>>>>>>>> >>>>>>>>>>>> _______________________________________________ >>>>>>>>>>>> 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 >>>>>>>>> >>>>>>> >>>>>>> >>>>>> >>>>> >>>> >>> >> > From keith at winnetworks.com Fri Jan 15 04:33:47 2010 From: keith at winnetworks.com (Keith Pawson) Date: Fri, 15 Jan 2010 14:33:47 +1100 Subject: [smokeping-users] Upgrade 2.3.6 to 2.4.2 Debian Message-ID: <93bf65761001141933u364b9dfbtb2d37d51c0e8674a@mail.gmail.com> Hi I've got a Debian Lenny box with Smokeping running 2.3.6 which was installed from the Debian Repos with Aptitude about 18 months ago and all is working fine. However, I want to upgrade it to 2.42 and then the latest snapshot to resolve the FF35 zoom issue and I'm having problems figuring out the process steps. >From what I've read, Googled and seen on this mailing list archive I should just copy over the top of the current installation, but this is where I seem to find it confusing as there does not appear to be a single area of the Smokeping files. I can see my data and customised graphs and have backed them up together with my config files such as Targets etc but where do the directories of the unzipped smokeping-2.4.2.tar.gz go? Or is it due to the fact that I've installed from the Debian repos? Maybe I've completely missed something in the docs or something, any help would be greatly appreciated. Thanks -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.oetiker.ch/pipermail/smokeping-users/attachments/20100115/8053f5bb/attachment.htm From smokeping123 at hotmail.com Fri Jan 15 06:22:02 2010 From: smokeping123 at hotmail.com (Smokeping slt) Date: Fri, 15 Jan 2010 11:22:02 +0600 Subject: [smokeping-users] Backup smokeping Message-ID: hi, I installed opennms 2.4.2 server one month ago . i got a powerful server and again i installed the smokeping same version. now my requirement is to backup the older rrd files to the newer server. i copied previous rrd files to the newer server rrd file location. but i couldn get the older latency graph. it'll start from the beginning . i want to know the exact procedure in order to backup my smokeping server ? could u plz be kind enough to reply me tnx _________________________________________________________________ Windows Live: Keep your friends up to date with what you do online. http://www.microsoft.com/middleeast/windows/windowslive/see-it-in-action/social-network-basics.aspx?ocid=PID23461::T:WLMTAGL:ON:WL:en-xm:SI_SB_1:092010 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.oetiker.ch/pipermail/smokeping-users/attachments/20100115/d3c12207/attachment.htm From ntyni+smokeping-users at mappi.helsinki.fi Fri Jan 15 08:12:15 2010 From: ntyni+smokeping-users at mappi.helsinki.fi (Niko Tyni) Date: Fri, 15 Jan 2010 09:12:15 +0200 Subject: [smokeping-users] Upgrade 2.3.6 to 2.4.2 Debian In-Reply-To: <93bf65761001141933u364b9dfbtb2d37d51c0e8674a@mail.gmail.com> References: <93bf65761001141933u364b9dfbtb2d37d51c0e8674a@mail.gmail.com> Message-ID: <20100115071215.GA4349@madeleine.local.invalid> On Fri, Jan 15, 2010 at 02:33:47PM +1100, Keith Pawson wrote: > I've got a Debian Lenny box with Smokeping running 2.3.6 which was installed > from the Debian Repos with Aptitude about 18 months ago and all is working > fine. > However, I want to upgrade it to 2.42 and then the latest snapshot to > resolve the FF35 zoom issue and I'm having problems figuring out the process > steps. > > >From what I've read, Googled and seen on this mailing list archive I should > just copy over the top of the current installation, but this is where I seem > to find it confusing as there does not appear to be a single area of the > Smokeping files. I can see my data and customised graphs and have backed > them up together with my config files such as Targets etc but where do the > directories of the unzipped smokeping-2.4.2.tar.gz go? I'm afraid it's not quite as simple as that. The files need some modifications to work in the directory hierarchy as used by Debian, and copying local files over dpkg managed ones in /usr means dpkg is free to overwrite them on upgrades (for example in security updates and the like.) The right way to switch to a non-Debian version is to install it separately to /usr/local or /srv and configure it yourself. You need to copy over the old data but that should be straightforward. If you're only after the FF35 fix and are happy with 2.3.6 otherwise, you might be able to get away with the old Debian installation by just copying over the newer scriptaculous and prototype javascript files. Using dpkg-divert(8) to prevent dpkg from overwriting your changes in the future would be a good idea in that case. I suppose I should see about providing an updated lenny 2.3.6 version to fix the FF35 issue. If somebody wants to help, finding a minimal fix to the prototype/scriptaculous stuff (as opposed to blindly upgrading it all, which goes against the Debian release policies for 'stable' updates) would go a long way. -- Niko From smokeping at thomas-klein.de Fri Jan 15 11:05:24 2010 From: smokeping at thomas-klein.de (Thomas Klein) Date: Fri, 15 Jan 2010 11:05:24 +0100 Subject: [smokeping-users] Submillisecond RTT measurement accuracy Message-ID: <4B503DE4.2060500@thomas-klein.de> Hello, i have to setup LAN measurements and reporting for a 0.9 ms RTT Service Level Objective and try to investigate the Smokeping capabilities to do that. Anybody on the list who has done something similar already or can give me some hints about the accuracy i may can achieve with Smokeping? I am also wondering what method will be best, icmp ping, TCP syn, UDP echo? Hints are welcome. Thanks, Thomas From tobi at oetiker.ch Fri Jan 15 11:10:04 2010 From: tobi at oetiker.ch (Tobias Oetiker) Date: Fri, 15 Jan 2010 11:10:04 +0100 (CET) Subject: [smokeping-users] Submillisecond RTT measurement accuracy In-Reply-To: <4B503DE4.2060500@thomas-klein.de> References: <4B503DE4.2060500@thomas-klein.de> Message-ID: Hi Thomas, Today Thomas Klein wrote: > Hello, > > i have to setup LAN measurements and reporting for a 0.9 ms RTT Service > Level Objective and try to investigate the Smokeping capabilities to do > that. Anybody on the list who has done something similar already or can > give me some hints about the accuracy i may can achieve with Smokeping? smokeping uses rrdtool internally for data storage, so there is no fundamental problem with even smaler numbers ... at worst it is a presentation issue ... the measurement happens with external tools anyway, so this again is not something which smokeping will influence ... > I am also wondering what method will be best, icmp ping, TCP syn, UDP > echo? Hints are welcome. this I don't know ... cheers tobi -- Tobi Oetiker, OETIKER+PARTNER AG, Aarweg 15 CH-4600 Olten, Switzerland http://it.oetiker.ch tobi at oetiker.ch ++41 62 775 9902 / sb: -9900 From ged at jubileegroup.co.uk Fri Jan 15 12:50:45 2010 From: ged at jubileegroup.co.uk (G.W. Haywood) Date: Fri, 15 Jan 2010 11:50:45 +0000 (GMT) Subject: [smokeping-users] Upgrade 2.3.6 to 2.4.2 Debian In-Reply-To: <20100115071215.GA4349@madeleine.local.invalid> References: <93bf65761001141933u364b9dfbtb2d37d51c0e8674a@mail.gmail.com> <20100115071215.GA4349@madeleine.local.invalid> Message-ID: Hi there, On Fri, 15 Jan 2010, Niko Tyni wrote: > On Fri, Jan 15, 2010 at 02:33:47PM +1100, Keith Pawson wrote: > > > I've got a Debian Lenny box with Smokeping running 2.3.6 ... > > I want to upgrade it to 2.42 and then the latest snapshot to > > resolve the FF35 zoom issue ... > > The right way to switch to a non-Debian version is to install it > separately to /usr/local or /srv and configure it yourself. ... Correct. For this kind of thing Debian policies are just a PITA, I'd recommend ditching the Debian version entirely and installing Smokeping from scratch from http://oss.oetiker.ch/smokeping/pub/ You can make it into a package yourself if you want to (that's what I did for 'xv'. :) -- 73, Ged. From ged at jubileegroup.co.uk Fri Jan 15 13:34:14 2010 From: ged at jubileegroup.co.uk (G.W. Haywood) Date: Fri, 15 Jan 2010 12:34:14 +0000 (GMT) Subject: [smokeping-users] Submillisecond RTT measurement accuracy In-Reply-To: <4B503DE4.2060500@thomas-klein.de> References: <4B503DE4.2060500@thomas-klein.de> Message-ID: Hi there, On Fri, 15 Jan 2010, Thomas Klein wrote: > i have to setup LAN measurements and reporting for a 0.9 ms RTT Service > Level Objective ... Traffic over the public Internet will be orders of magnitude slower. Presumably this is traffic on private networks/leased lines? > Anybody on the list who has done something similar already or can > give me some hints about the accuracy i may can achieve with Smokeping? Smokeping itself will have no trouble with that. You have great flexibility in the tools it uses. I routinely monitor LAN traffic with RTTs in the region of 200 microseconds, see for example http://www.jubileegroup.co.uk/JOS/misc/VORTEX_last_21600.png > I am also wondering what method will be best, icmp ping, TCP syn, UDP > echo? Hints are welcome. The more the OS stacks have to do the longer will be your RTT, but before anyone can give you better advice about that I'd suggest that your Service Level Objective might need to be specified more clearly. Pinging a machine with icmp will tell you if a machine is reachable, but it one might argue there's little point rejoicing in the knowledge that a machine is reachable if it isn't accepting connections... :) Be aware that you can have issues with the event timers on some (and not necessarily the older) hardware, especially with multi-processor architectures. Read about the different timing devices and their limitations; Google for things like PIT, TSC and HPET; find out exactly what devices you have in your hardware, and if they are being used correctly by your OS. Most of the time you'll be OK, but look in your kernel config for things like CONFIG_X86_TSC_DISABLE and decide whether you need to use a kernel boot parameter or two. Above all, look critically at the results you're getting and don't simply believe what you see. Take time to become familiar with your networks, and how they behave. If you take this seriously, you're in fior the long haul. -- 73, Ged. From upos.geo at yahoo.com Fri Jan 15 20:32:40 2010 From: upos.geo at yahoo.com (zells) Date: Fri, 15 Jan 2010 11:32:40 -0800 (PST) Subject: [smokeping-users] smoketrace socket: permission denied- centos 5.4 Message-ID: <785383.9340.qm@web30203.mail.mud.yahoo.com> Hello, I'm getting a "socket: permission denied" error while trying to perform a smoketrace to a host on a CentOS 5.4 box with apache 2.2.3. I have modified the permissions on /bin/traceroute to +4755. The smoketrace pop-up window loads fine otherwise. I have also tried removing the "-I" flag from the Tr.pm file thinking that could be part of the problem without success. Has anyone else run into this problem or might be able to offer suggestions to point me in the right direction? It seems to be how the command is being run within the script on the webpage, because "sudo -u apache traceroute -I -q 1 hostname" works fine on the CLI. thanks Richard From ged at jubileegroup.co.uk Fri Jan 15 22:32:25 2010 From: ged at jubileegroup.co.uk (G.W. Haywood) Date: Fri, 15 Jan 2010 21:32:25 +0000 (GMT) Subject: [smokeping-users] smoketrace socket: permission denied- centos 5.4 In-Reply-To: <785383.9340.qm@web30203.mail.mud.yahoo.com> References: <785383.9340.qm@web30203.mail.mud.yahoo.com> Message-ID: Hi there, On Fri, 15 Jan 2010, zells wrote: > Hello, I'm getting a "socket: permission denied" error while trying > to perform a smoketrace to a host on a CentOS 5.4 box [snip] > "sudo -u apache traceroute -I -q 1 hostname" works fine on the CLI. SELinux? -- 73, Ged. From upos.geo at yahoo.com Fri Jan 15 23:26:27 2010 From: upos.geo at yahoo.com (zells) Date: Fri, 15 Jan 2010 14:26:27 -0800 (PST) Subject: [smokeping-users] smoketrace socket: permission denied- centos 5.4 In-Reply-To: References: <785383.9340.qm@web30203.mail.mud.yahoo.com> Message-ID: <754551.38303.qm@web30207.mail.mud.yahoo.com> Hi, honestly I'm not sure. I have the default CentOS 5.4 install going. How would I verify one way or the other? thanks Richard ----- Original Message ---- From: G.W. Haywood To: Smokeping users' mailing list Sent: Fri, January 15, 2010 2:32:25 PM Subject: Re: [smokeping-users] smoketrace socket: permission denied- centos 5.4 Hi there, On Fri, 15 Jan 2010, zells wrote: > Hello, I'm getting a "socket: permission denied" error while trying > to perform a smoketrace to a host on a CentOS 5.4 box [snip] > "sudo -u apache traceroute -I -q 1 hostname" works fine on the CLI. SELinux? -- 73, Ged. _______________________________________________ smokeping-users mailing list smokeping-users at lists.oetiker.ch https://lists.oetiker.ch/cgi-bin/listinfo/smokeping-users From keith at winnetworks.com Fri Jan 15 23:03:11 2010 From: keith at winnetworks.com (Keith Pawson) Date: Sat, 16 Jan 2010 09:03:11 +1100 Subject: [smokeping-users] Upgrade 2.3.6 to 2.4.2 Debian (Niko Tyni) Message-ID: <93bf65761001151403v3c91de41of57e41a7b5811913@mail.gmail.com> Thanks for the quick response, think I might run up a test box and play with going to a non-Debian version and if all that works out will do the same for the production machine. It would good though if the Debian version had the FF35 fix, but I'm afraid helping you with this is way beyond my skills, sorry. Thanks. > Message: 5 > Date: Fri, 15 Jan 2010 09:12:15 +0200 > From: Niko Tyni > > > Subject: Re: [smokeping-users] Upgrade 2.3.6 to 2.4.2 Debian > To: smokeping-users at lists.oetiker.ch > Message-ID: <20100115071215.GA4349 at madeleine.local.invalid> > Content-Type: text/plain; charset=us-ascii > > On Fri, Jan 15, 2010 at 02:33:47PM +1100, Keith Pawson wrote: > > > I've got a Debian Lenny box with Smokeping running 2.3.6 which was > installed > > from the Debian Repos with Aptitude about 18 months ago and all is > working > > fine. > > However, I want to upgrade it to 2.42 and then the latest snapshot to > > resolve the FF35 zoom issue and I'm having problems figuring out the > process > > steps. > > > > >From what I've read, Googled and seen on this mailing list archive I > should > > just copy over the top of the current installation, but this is where I > seem > > to find it confusing as there does not appear to be a single area of the > > Smokeping files. I can see my data and customised graphs and have backed > > them up together with my config files such as Targets etc but where do > the > > directories of the unzipped smokeping-2.4.2.tar.gz go? > > I'm afraid it's not quite as simple as that. The files need some > modifications to work in the directory hierarchy as used by Debian, and > copying local files over dpkg managed ones in /usr means dpkg is free to > overwrite them on upgrades (for example in security updates and the like.) > > The right way to switch to a non-Debian version is to install it > separately to /usr/local or /srv and configure it yourself. You need > to copy over the old data but that should be straightforward. > > If you're only after the FF35 fix and are happy with 2.3.6 otherwise, > you might be able to get away with the old Debian installation by just > copying over the newer scriptaculous and prototype javascript files. Using > dpkg-divert(8) to prevent dpkg from overwriting your changes in the > future would be a good idea in that case. > > I suppose I should see about providing an updated lenny 2.3.6 version > to fix the FF35 issue. If somebody wants to help, finding a minimal fix > to the prototype/scriptaculous stuff (as opposed to blindly upgrading > it all, which goes against the Debian release policies for 'stable' > updates) would go a long way. > -- > Niko > > > > ------------------------------ > > _______________________________________________ > 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 36, Issue 7 > ********************************************** > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.oetiker.ch/pipermail/smokeping-users/attachments/20100116/049e405b/attachment-0001.htm From upos.geo at yahoo.com Fri Jan 15 23:58:55 2010 From: upos.geo at yahoo.com (zells) Date: Fri, 15 Jan 2010 14:58:55 -0800 (PST) Subject: [smokeping-users] smoketrace socket: permission denied- centos 5.4 Message-ID: <110302.56338.qm@web30207.mail.mud.yahoo.com> I did some research and found that it is enabled. [root at localhost smokeping]# sestatus SELinux status: enabled SELinuxfs mount: /selinux Current mode: enforcing Mode from config file: enforcing Policy version: 21 Policy from config file: targeted I disabled it and now it's working. thanks a lot for that tip! Rich ----- Original Message ---- From: zells To: Smokeping users' mailing list Sent: Fri, January 15, 2010 3:26:27 PM Subject: Re: [smokeping-users] smoketrace socket: permission denied- centos 5.4 Hi, honestly I'm not sure. I have the default CentOS 5.4 install going. How would I verify one way or the other? thanks Richard ----- Original Message ---- From: G.W. Haywood To: Smokeping users' mailing list Sent: Fri, January 15, 2010 2:32:25 PM Subject: Re: [smokeping-users] smoketrace socket: permission denied- centos 5.4 Hi there, On Fri, 15 Jan 2010, zells wrote: > Hello, I'm getting a "socket: permission denied" error while trying > to perform a smoketrace to a host on a CentOS 5.4 box [snip] > "sudo -u apache traceroute -I -q 1 hostname" works fine on the CLI. SELinux? -- 73, Ged. _______________________________________________ smokeping-users mailing list smokeping-users at lists.oetiker.ch https://lists.oetiker.ch/cgi-bin/listinfo/smokeping-users From smokeping at thomas-klein.de Mon Jan 18 13:38:52 2010 From: smokeping at thomas-klein.de (Thomas Klein) Date: Mon, 18 Jan 2010 13:38:52 +0100 Subject: [smokeping-users] Submillisecond RTT measurement accuracy In-Reply-To: References: <4B503DE4.2060500@thomas-klein.de> Message-ID: <4B54565C.8040404@thomas-klein.de> Hi Tobias, i have now setup smokeping on an ubuntu server and some basic icmp rtt measurements do work well. Now i am wondering how to implement reporting for the SLO based on that. Maybe i can use the alerts and an external programm to log an entry for every treshold violation (median rtt > X ms) and report on the number of violations during a time interval. Not sure how an alert pattern must look for that. Any other hints how to implement a monthly report showing if the median rtt was more than 10% of the measurement time above a given threshold? Thanks, Thomas Tobias Oetiker wrote: > Hi Thomas, > > Today Thomas Klein wrote: > > >> Hello, >> >> i have to setup LAN measurements and reporting for a 0.9 ms RTT Service >> Level Objective and try to investigate the Smokeping capabilities to do >> that. Anybody on the list who has done something similar already or can >> give me some hints about the accuracy i may can achieve with Smokeping? >> > > smokeping uses rrdtool internally for data storage, so there is no > fundamental problem with even smaler numbers ... at worst it is a > presentation issue ... > > the measurement happens with external tools anyway, so this again > is not something which smokeping will influence ... > > >> I am also wondering what method will be best, icmp ping, TCP syn, UDP >> echo? Hints are welcome. >> > > this I don't know ... > > cheers > tobi > > From rjd at merit.edu Mon Jan 18 17:04:58 2010 From: rjd at merit.edu (Russell Dwarshuis) Date: Mon, 18 Jan 2010 11:04:58 -0500 (EST) Subject: [smokeping-users] Submillisecond RTT measurement accuracy In-Reply-To: <474420395.1764241263830678667.JavaMail.root@crono> Message-ID: <1365452935.1764361263830698578.JavaMail.root@crono> For long-term reports I wrote a program using RRDs::fetch on the .rrd files created by smokeping that analyzes all the pings in one shot. Make sure your .rrd is sized correctly. The stock row size will not hold a month of 5 minute samples with step=1. I set mine to: # 110 days of all samples AVERAGE 0.5 1 31680 # 400 days of every-2-hours consolidated data AVERAGE 0.5 24 4800 MIN 0.5 24 4800 MAX 0.5 24 4800 You'll have to remove all your .rrd files if you decide to resize or find a utility to convert them. You'll also have to think of how to exclude data during maintenance windows. That will probably be a bigger challenge. -Russell Dwarshuis ----- Original Message ----- From: "Thomas Klein" To: "Tobias Oetiker" Cc: smokeping-users at lists.oetiker.ch Sent: Monday, January 18, 2010 7:38:52 AM GMT -05:00 US/Canada Eastern Subject: Re: [smokeping-users] Submillisecond RTT measurement accuracy Hi Tobias, i have now setup smokeping on an ubuntu server and some basic icmp rtt measurements do work well. Now i am wondering how to implement reporting for the SLO based on that. Maybe i can use the alerts and an external programm to log an entry for every treshold violation (median rtt > X ms) and report on the number of violations during a time interval. Not sure how an alert pattern must look for that. Any other hints how to implement a monthly report showing if the median rtt was more than 10% of the measurement time above a given threshold? Thanks, Thomas Tobias Oetiker wrote: > Hi Thomas, > > Today Thomas Klein wrote: > > >> Hello, >> >> i have to setup LAN measurements and reporting for a 0.9 ms RTT Service >> Level Objective and try to investigate the Smokeping capabilities to do >> that. Anybody on the list who has done something similar already or can >> give me some hints about the accuracy i may can achieve with Smokeping? >> > > smokeping uses rrdtool internally for data storage, so there is no > fundamental problem with even smaler numbers ... at worst it is a > presentation issue ... > > the measurement happens with external tools anyway, so this again > is not something which smokeping will influence ... > > >> I am also wondering what method will be best, icmp ping, TCP syn, UDP >> echo? Hints are welcome. >> > > this I don't know ... > > cheers > tobi > > _______________________________________________ smokeping-users mailing list smokeping-users at lists.oetiker.ch https://lists.oetiker.ch/cgi-bin/listinfo/smokeping-users From smokeping at thomas-klein.de Tue Jan 19 12:42:32 2010 From: smokeping at thomas-klein.de (Thomas Klein) Date: Tue, 19 Jan 2010 12:42:32 +0100 Subject: [smokeping-users] rtt alert granularity Message-ID: <4B559AA8.5020202@thomas-klein.de> Hi, i have now setup alerts but do not get the needed granularity logged. Example Alert: +lan_latency_04 type = rtt pattern = >0.4 comment = Alert for all measurements above 400us What i do get in an e-mail: Pattern ------- >0.4 Data (old --> now) ------------------ loss: 0% rtt: 0ms What can i do to get the measured rtt with microsecond granularity? Thanks, Thomas From ged at jubileegroup.co.uk Tue Jan 19 13:23:25 2010 From: ged at jubileegroup.co.uk (G.W. Haywood) Date: Tue, 19 Jan 2010 12:23:25 +0000 (GMT) Subject: [smokeping-users] rtt alert granularity In-Reply-To: <4B559AA8.5020202@thomas-klein.de> References: <4B559AA8.5020202@thomas-klein.de> Message-ID: Hi there, On Tue, 19 Jan 2010, Thomas Klein wrote: > i have now setup alerts but do not get the needed granularity logged. > ... > What can i do to get the measured rtt with microsecond granularity? I thought I'd explained that to you in my mail of 15 January. Under some circumstances, some implementations of the timing functions give granularities of the order of several milliseconds. You will need to check first of all that your 'ping' for example is capable of giving reasonable results. On a dual Opteron server here, the Debian kernel installation was fine until I upgraded the kernel one day and then it started to give RTTs in integer multiples of 4ms. After quite a lot of messing around I found that the good folks at Debian had changed a part of the kernel configuration. I had to use a kernel boot command clock=tsc to get the gettimeofday() C library function to return more reasonable values. Note that I still do not know much about the accuracy of the values, and there still could be something horribly wrong, but for the moment if there is something wrong it doesn't seem to be hurting me so I've moved on. I have no reason to believe that the problems I've had with the Opteron machine are the same as the problems you have now. Here's a random example of the sort of thing you need to worry about if you take time measurements on computers seriously: http://www.ntp.org/ntpfaq/NTP-s-sw-clocks-quality.htm http://lkml.indiana.edu/hypermail/linux/kernel/0411.1/2135.htm -- 73, Ged. From smokeping at thomas-klein.de Tue Jan 19 13:55:41 2010 From: smokeping at thomas-klein.de (Thomas Klein) Date: Tue, 19 Jan 2010 13:55:41 +0100 Subject: [smokeping-users] rtt alert granularity In-Reply-To: References: <4B559AA8.5020202@thomas-klein.de> Message-ID: <4B55ABCD.1050803@thomas-klein.de> The measurements are already done with the right granularity and they do also show up fine in the graphs. E.g. median rtt: 665.5 us avg 696.8 us max .... They are only not send out with the measured granularity in the alarm messages. So my question is how to fix this presentation issue. Greetings, Thomas G.W. Haywood wrote: > Hi there, > > On Tue, 19 Jan 2010, Thomas Klein wrote: > > >> i have now setup alerts but do not get the needed granularity logged. >> ... >> What can i do to get the measured rtt with microsecond granularity? >> > > I thought I'd explained that to you in my mail of 15 January. Under > some circumstances, some implementations of the timing functions give > granularities of the order of several milliseconds. You will need to > check first of all that your 'ping' for example is capable of giving > reasonable results. On a dual Opteron server here, the Debian kernel > installation was fine until I upgraded the kernel one day and then it > started to give RTTs in integer multiples of 4ms. After quite a lot > of messing around I found that the good folks at Debian had changed a > part of the kernel configuration. I had to use a kernel boot command > > clock=tsc > > to get the gettimeofday() C library function to return more reasonable > values. Note that I still do not know much about the accuracy of the > values, and there still could be something horribly wrong, but for the > moment if there is something wrong it doesn't seem to be hurting me so > I've moved on. I have no reason to believe that the problems I've had > with the Opteron machine are the same as the problems you have now. > > Here's a random example of the sort of thing you need to worry about > if you take time measurements on computers seriously: > > http://www.ntp.org/ntpfaq/NTP-s-sw-clocks-quality.htm > http://lkml.indiana.edu/hypermail/linux/kernel/0411.1/2135.htm > > -- > > 73, > Ged. > > From smokeping at thomas-klein.de Tue Jan 19 15:13:04 2010 From: smokeping at thomas-klein.de (Thomas Klein) Date: Tue, 19 Jan 2010 15:13:04 +0100 Subject: [smokeping-users] rtt alert granularity In-Reply-To: <4B55ABCD.1050803@thomas-klein.de> References: <4B559AA8.5020202@thomas-klein.de> <4B55ABCD.1050803@thomas-klein.de> Message-ID: <4B55BDF0.50801@thomas-klein.de> This looks like the related code in sub check_alerts: my $rtt = "rtt: ".join ", ",map {defined $_ ? (/^\d/ ? sprintf "%.0fms", $_*1000 :$_):"U" } @{$x->{rtt}}; I have changed sprintf "%.0fms" to sprintf "%.3fms" and do now get results lke rtt: 0.260ms as needed. Will this change have any unwished side effects? Greetings, Thomas Thomas Klein wrote: > The measurements are already done with the right granularity and they do > also show up fine in the graphs. E.g. median rtt: 665.5 us avg 696.8 > us max .... > > They are only not send out with the measured granularity in the alarm > messages. So my question is how to fix this presentation issue. > > Greetings, > Thomas > > > G.W. Haywood wrote: > >> Hi there, >> >> On Tue, 19 Jan 2010, Thomas Klein wrote: >> >> >> >>> i have now setup alerts but do not get the needed granularity logged. >>> ... >>> What can i do to get the measured rtt with microsecond granularity? >>> >>> >> I thought I'd explained that to you in my mail of 15 January. Under >> some circumstances, some implementations of the timing functions give >> granularities of the order of several milliseconds. You will need to >> check first of all that your 'ping' for example is capable of giving >> reasonable results. On a dual Opteron server here, the Debian kernel >> installation was fine until I upgraded the kernel one day and then it >> started to give RTTs in integer multiples of 4ms. After quite a lot >> of messing around I found that the good folks at Debian had changed a >> part of the kernel configuration. I had to use a kernel boot command >> >> clock=tsc >> >> to get the gettimeofday() C library function to return more reasonable >> values. Note that I still do not know much about the accuracy of the >> values, and there still could be something horribly wrong, but for the >> moment if there is something wrong it doesn't seem to be hurting me so >> I've moved on. I have no reason to believe that the problems I've had >> with the Opteron machine are the same as the problems you have now. >> >> Here's a random example of the sort of thing you need to worry about >> if you take time measurements on computers seriously: >> >> http://www.ntp.org/ntpfaq/NTP-s-sw-clocks-quality.htm >> http://lkml.indiana.edu/hypermail/linux/kernel/0411.1/2135.htm >> >> -- >> >> 73, >> Ged. >> >> >> > > _______________________________________________ > smokeping-users mailing list > smokeping-users at lists.oetiker.ch > https://lists.oetiker.ch/cgi-bin/listinfo/smokeping-users > > From ged at jubileegroup.co.uk Tue Jan 19 16:45:53 2010 From: ged at jubileegroup.co.uk (G.W. Haywood) Date: Tue, 19 Jan 2010 15:45:53 +0000 (GMT) Subject: [smokeping-users] rtt alert granularity In-Reply-To: <4B55BDF0.50801@thomas-klein.de> References: <4B559AA8.5020202@thomas-klein.de> <4B55ABCD.1050803@thomas-klein.de> <4B55BDF0.50801@thomas-klein.de> Message-ID: Hi there, On Tue, 19 Jan 2010, Thomas Klein wrote: > This looks like the related code in sub check_alerts: > my $rtt = "rtt: ".join ", ",map {defined $_ ? (/^\d/ ? > sprintf "%.0fms", $_*1000 :$_):"U" } @{$x->{rtt}}; > > I have changed sprintf "%.0fms" to sprintf "%.3fms" and do now get > results lke > rtt: 0.260ms > as needed. > > Will this change have any unwished side effects? Except that the text might not all fit on the display, I don't think so. -- 73, Ged. From jim.bartus at gmail.com Tue Jan 19 17:46:52 2010 From: jim.bartus at gmail.com (jim bartus) Date: Tue, 19 Jan 2010 11:46:52 -0500 Subject: [smokeping-users] question about interpreting the difference between overview and details graphs Message-ID: I have a number of EchoPingHttp checks where in the overview graph the "smoke" appears nearly symmetric above and below the median rtt line, but when you click on it for the details graph the "smoke" is almost entirely above the colored line. I don't think anything's wrong here, I'm just not sure how to interpret the difference. Here is capture of the overview and deatails graph of my worst offender (they all do it to some degree): http://i.imgur.com/DgkZ2.png And here's the diff of settings I changed from the default (fedora 12, "yum install smokeping", 2.4.2): http://www.pastie.org/784976 I tried reading the documentation here, but I'm not seeing it: http://oss.oetiker.ch/smokeping/doc/reading.en.html So the question here is... whats the difference that shows the line in the middle for overview but at the bottom for details? Thanks! -jim -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.oetiker.ch/pipermail/smokeping-users/attachments/20100119/f9d81818/attachment.htm From jjackson at aninetworks.net Tue Jan 19 21:29:29 2010 From: jjackson at aninetworks.net (Joseph Jackson) Date: Tue, 19 Jan 2010 12:29:29 -0800 Subject: [smokeping-users] fping choose source interface IP Message-ID: <695277448C537A469D28FF68D0938C8372F2BDC084@EXMBX04.exchhosting.com> Hi list! Is there any way to force smokeping/fping to use a different source IP address than the one that is the primary bound to the NIC? My slave machines have more than one IP bound to them and based on what the source IP is gets routed slightly different so I would like to be able to choose which source ip used for the pings. Using the latest version. Thanks! Joseph From tobi at oetiker.ch Tue Jan 19 21:47:32 2010 From: tobi at oetiker.ch (Tobias Oetiker) Date: Tue, 19 Jan 2010 21:47:32 +0100 (CET) Subject: [smokeping-users] fping choose source interface IP In-Reply-To: <695277448C537A469D28FF68D0938C8372F2BDC084@EXMBX04.exchhosting.com> References: <695277448C537A469D28FF68D0938C8372F2BDC084@EXMBX04.exchhosting.com> Message-ID: Hi Joseph, Today Joseph Jackson wrote: > Hi list! > > > Is there any way to force smokeping/fping to use a different > source IP address than the one that is the primary bound to the > NIC? My slave machines have more than one IP bound to them and > based on what the source IP is gets routed slightly different so > I would like to be able to choose which source ip used for the > pings. Using the latest version. the trunk version of smokeping together with the fping version from the smokeping repository does support this ... cheers tobi > > > > Thanks! > > Joseph > > _______________________________________________ > smokeping-users mailing list > smokeping-users at lists.oetiker.ch > https://lists.oetiker.ch/cgi-bin/listinfo/smokeping-users > > -- Tobi Oetiker, OETIKER+PARTNER AG, Aarweg 15 CH-4600 Olten, Switzerland http://it.oetiker.ch tobi at oetiker.ch ++41 62 775 9902 / sb: -9900 From cholam20 at yahoo.co.in Mon Jan 25 18:02:23 2010 From: cholam20 at yahoo.co.in (revathi ganesh) Date: Mon, 25 Jan 2010 22:32:23 +0530 (IST) Subject: [smokeping-users] http access thru proxy Message-ID: <311034.10856.qm@web8408.mail.in.yahoo.com> Hi How to configure smokeping so that http access are carried on thru our domain proxy server. thanks Your Mail works best with the New Yahoo Optimized IE8. Get it NOW! http://downloads.yahoo.com/in/internetexplorer/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.oetiker.ch/pipermail/smokeping-users/attachments/20100125/d894c499/attachment.htm From jbendtsen at laerdal.dk Mon Jan 25 18:16:22 2010 From: jbendtsen at laerdal.dk (Jon Bendtsen) Date: Mon, 25 Jan 2010 18:16:22 +0100 Subject: [smokeping-users] http access thru proxy In-Reply-To: <311034.10856.qm@web8408.mail.in.yahoo.com> References: <311034.10856.qm@web8408.mail.in.yahoo.com> Message-ID: <264C8655-767F-4D21-A4C2-17FCC74F5647@laerdal.dk> On 25/01/2010, at 18.02, revathi ganesh wrote: > Hi > > How to configure smokeping so that http access are carried on thru our domain proxy server. I recently made something like that for another reason. I used proxypass and proxypassreverse in apache, it worked fine. From Al_Sorrell at troweprice.com Mon Jan 25 19:06:33 2010 From: Al_Sorrell at troweprice.com (Sorrell, Al) Date: Mon, 25 Jan 2010 13:06:33 -0500 Subject: [smokeping-users] http access thru proxy In-Reply-To: <264C8655-767F-4D21-A4C2-17FCC74F5647@laerdal.dk> References: <311034.10856.qm@web8408.mail.in.yahoo.com> <264C8655-767F-4D21-A4C2-17FCC74F5647@laerdal.dk> Message-ID: For the curl probe, I use the following configuration (fill in the appropriate values shown in <>) + Curl binary = /usr/local/bin/curl pings=20 extraargs = --proxy : --proxy-user ":" urlformat = http://%host% >-----Original Message----- >From: smokeping-users-bounces at lists.oetiker.ch [mailto:smokeping-users-bounces at lists.oetiker.ch] On >Behalf Of Jon Bendtsen >Sent: Monday, January 25, 2010 12:16 PM >To: revathi ganesh >Cc: smokeping-users at lists.oetiker.ch >Subject: Re: [smokeping-users] http access thru proxy > >On 25/01/2010, at 18.02, revathi ganesh wrote: > >> Hi >> >> How to configure smokeping so that http access are carried on thru our domain proxy server. > >I recently made something like that for another reason. I used proxypass and proxypassreverse in >apache, it worked fine. > > >_______________________________________________ >smokeping-users mailing list >smokeping-users at lists.oetiker.ch >https://lists.oetiker.ch/cgi-bin/listinfo/smokeping-users T. Rowe Price (including T. Rowe Price Group, Inc. and its affiliates) and its associates do not provide legal or tax advice. Any tax-related discussion contained in this e-mail, including any attachments, is not intended or written to be used, and cannot be used, for the purpose of (i) avoiding any tax penalties or (ii) promoting, marketing, or recommending to any other party any transaction or matter addressed herein. Please consult your independent legal counsel and/or professional tax advisor regarding any legal or tax issues raised in this e-mail. The contents of this e-mail and any attachments are intended solely for the use of the named addressee(s) and may contain confidential and/or privileged information. Any unauthorized use, copying, disclosure, or distribution of the contents of this e-mail is strictly prohibited by the sender and may be unlawful. If you are not the intended recipient, please notify the sender immediately and delete this e-mail. From SchaibleyDean at JohnDeere.com Fri Jan 29 17:09:01 2010 From: SchaibleyDean at JohnDeere.com (Schaibley Dean) Date: Fri, 29 Jan 2010 10:09:01 -0600 Subject: [smokeping-users] (probe CiscoRTTMonEchoICMP) exited unexpectedly with status 11 Message-ID: I searched through the archives and found 1 instance of this (Oct 2006, from Vincent Aniello) however was unable to find an answer. Has anyone seen an error message like this, and how to fix it? (Running on Smokeping 2.3.6) (probe CiscoRTTMonEchoICMP) exited unexpectedly with status 11 Dean Schaibley Secure Internet Access Volt Services Group John Deere Company (309) 748-9426 email: schaibleydean at johndeere.com "Ipsa Scientia Potestas Est: Knowledge Itself Is Power" -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.oetiker.ch/pipermail/smokeping-users/attachments/20100129/40d8ba7b/attachment-0001.htm From SchaibleyDean at JohnDeere.com Fri Jan 29 18:19:15 2010 From: SchaibleyDean at JohnDeere.com (Schaibley Dean) Date: Fri, 29 Jan 2010 11:19:15 -0600 Subject: [smokeping-users] Forcing SNMP over TCP vs. UDP Message-ID: Need some help here. Is there a way to Force SNMP to use TCP 161 or UDP 161? Most all of our smokeping traffic is using UDP 161, but somehow, we do have some that is using TCP 161 (not sure how/why). Our firewalls are only config'd for allowing UDP 161, so when the Smokeping process tries to use TCP it is failing at the firewall (and Security won't allow TCP without justification). We are running Smokeping 2.3.6 with the CiscoRTTMonEchoICMP as the Probe. Any help/tips would be greatly appreciated. Dean Schaibley -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.oetiker.ch/pipermail/smokeping-users/attachments/20100129/273dca45/attachment.htm From mm23854 at tele2.se Fri Jan 15 19:09:15 2010 From: mm23854 at tele2.se (RICHARD) Date: Fri, 15 Jan 2010 18:09:15 -0000 Subject: [smokeping-users] Multihost graph for same target but with different probes? Message-ID: An HTML attachment was scrubbed... URL: http://lists.oetiker.ch/pipermail/smokeping-users/attachments/20100115/a766fde4/attachment-0001.htm From thomas.klein at hp.com Tue Jan 19 13:57:02 2010 From: thomas.klein at hp.com (Klein, Thomas) Date: Tue, 19 Jan 2010 12:57:02 -0000 Subject: [smokeping-users] rtt alert granularity In-Reply-To: References: <4B559AA8.5020202@thomas-klein.de> Message-ID: <273D59CBE1A1804EB9617E6B794CAEAC3EF9FF83C0@GVW1093EXB.americas.hpqcorp.net> The measurements are already done with the right granularity and they do also show up fine in the graphs. E.g. median rtt: 665.5 us avg 696.8 us max .... They are only not send out with the measured granularity in the alarm messages. So my question is how to fix this presentation issue. Greetings, Thomas -----Original Message----- From: G.W. Haywood [mailto:ged at jubileegroup.co.uk] Sent: Dienstag, 19. Januar 2010 13:23 To: Thomas Klein Cc: smokeping-users at lists.oetiker.ch Subject: Re: [smokeping-users] rtt alert granularity Hi there, On Tue, 19 Jan 2010, Thomas Klein wrote: > i have now setup alerts but do not get the needed granularity logged. > ... > What can i do to get the measured rtt with microsecond granularity? I thought I'd explained that to you in my mail of 15 January. Under some circumstances, some implementations of the timing functions give granularities of the order of several milliseconds. You will need to check first of all that your 'ping' for example is capable of giving reasonable results. On a dual Opteron server here, the Debian kernel installation was fine until I upgraded the kernel one day and then it started to give RTTs in integer multiples of 4ms. After quite a lot of messing around I found that the good folks at Debian had changed a part of the kernel configuration. I had to use a kernel boot command clock=tsc to get the gettimeofday() C library function to return more reasonable values. Note that I still do not know much about the accuracy of the values, and there still could be something horribly wrong, but for the moment if there is something wrong it doesn't seem to be hurting me so I've moved on. I have no reason to believe that the problems I've had with the Opteron machine are the same as the problems you have now. Here's a random example of the sort of thing you need to worry about if you take time measurements on computers seriously: http://www.ntp.org/ntpfaq/NTP-s-sw-clocks-quality.htm http://lkml.indiana.edu/hypermail/linux/kernel/0411.1/2135.htm -- 73, Ged. From thomas.klein at hp.com Tue Jan 19 14:03:30 2010 From: thomas.klein at hp.com (Klein, Thomas) Date: Tue, 19 Jan 2010 13:03:30 -0000 Subject: [smokeping-users] Recall: rtt alert granularity Message-ID: <273D59CBE1A1804EB9617E6B794CAEAC3EF9FF83CE@GVW1093EXB.americas.hpqcorp.net> Klein, Thomas would like to recall the message, "[smokeping-users] rtt alert granularity".