You can subscribe to this list here.
2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(12) |
Jun
(56) |
Jul
(68) |
Aug
(141) |
Sep
(82) |
Oct
(76) |
Nov
(115) |
Dec
(74) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2005 |
Jan
(65) |
Feb
(113) |
Mar
(82) |
Apr
(37) |
May
(44) |
Jun
(22) |
Jul
(12) |
Aug
(3) |
Sep
(17) |
Oct
(11) |
Nov
(23) |
Dec
(1) |
2006 |
Jan
(1) |
Feb
(9) |
Mar
(6) |
Apr
(12) |
May
(10) |
Jun
(23) |
Jul
(1) |
Aug
(4) |
Sep
(3) |
Oct
(4) |
Nov
(6) |
Dec
(15) |
2007 |
Jan
(17) |
Feb
(14) |
Mar
(20) |
Apr
(7) |
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
(5) |
Oct
(1) |
Nov
|
Dec
(2) |
2008 |
Jan
|
Feb
|
Mar
(2) |
Apr
(2) |
May
(6) |
Jun
(5) |
Jul
(13) |
Aug
(2) |
Sep
(16) |
Oct
|
Nov
|
Dec
|
2010 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Kemp, D. <Dar...@xe...> - 2004-07-09 18:35:48
|
=20 I am having the same seg fault issue as Tim did (in the list archives) However my mysql server and the server running perfparse are one and the same. I have looked around and see no old versions of mysql laying about, just the one I installed last week. =20 bash-2.03# ./perfparse Segmentation Fault (core dumped) bash-2.03# mysql --version mysql Ver 12.22 Distrib 4.0.20, for sun-solaris2.8 (sparc) bash-2.03# =20 bash-2.03# uname -a SunOS 5.8 un4u sparc SUNW,Sun-Fire-480R =20 =20 =20 Wondering if anyone else has hit this issue without the differing SQL versions in the list archives. =20 Also I notice in the documentation code for updating side.html: =20 =20 <tr> <td width=3D13> <img src=3D"images/greendot.gif" width=3D"13" height=3D"14" name=3D"performance-dot"> </td> <td nowrap> <a href=3D"/nagios/cgi-bin/extinfo.cgi?&type=3D4" = target=3D"main" onMouseOver=3D"switchdot('performance-dot',1)" onMouseOut=3D"switchdot('performance-dot',0)" class=3D"NavBarItem">Performance Info</a> </td> </tr> =20 =20 Correct me if I'm off but shouldn't this be pointing at the perfgraph.cgi? =20 The above just gives you another link to the Performance Info statistics. =20 Any help anyone can give would be appreciated. I'll keep fumbling with it in the meantime. =20 Cheers =20 -dkk =20 |
From: Ben C. <Be...@cl...> - 2004-07-08 16:06:19
|
Hi Tim, I am glad you like it :) Let me answer your questions in-line: Tim Wuyts wrote: > I've been experimenting with perfparse for a few days now, and it's an > impressive start. Here is a suggestion I'd like to make: why don't you store > the service state anywhere? By this I mean the actual exit code as reported > by the plugin. According to the Nagios doc it's available through the > $SERVICESTATE$ macro, so adding it to the serviceperf.log file should not be > a problem. You could then simply store it in the perfdata_service_raw table. Yes, this is a bit of an over-sight. In fact when I did the first version, either this macro was not available, or I entirelly missed it... Unfortunatelly PerfParse expects the log file in an exacting format. It is on our to-do list to amend this to inteperate this file depending on the format specified in nagios.cfg. It just hasn't been done yet :) PP at the moment doesn't store this value at all. The 'bin' data, as you say, recalculated this. This is not just that there is no data available, but also because the STATE from Nagios is specific to the entire service. Each service may have many metrics. Each metric may be in a different state :) There is no real point in storing this as it can be re-calculated. Saves space that's all. The 'Raw' data certainly has more reason to store this. In fact, i will escalate this to-do item. It has a best-guess at the state, but due to some badly coded plugins, doesn't always get it right. As you say, historical data is sitting there ready to be reported on, and doesn't mean a lot without the state :) PerfParse was designed to analyze data, as well as store it. I wonder, do you know any SQL and 'c'? Would you like to have a go at an availability report for the raw data? If you do, I'll give you some details in another email. You will be fully credited for any work. Thanks for enjoying PP, please keep the feedback going! Regards, Ben |
From: Tim W. <Tim...@pi...> - 2004-07-08 13:47:48
|
Greetings Programs! I've been experimenting with perfparse for a few days now, and it's an impressive start. Here is a suggestion I'd like to make: why don't you store the service state anywhere? By this I mean the actual exit code as reported by the plugin. According to the Nagios doc it's available through the $SERVICESTATE$ macro, so adding it to the serviceperf.log file should not be a problem. You could then simply store it in the perfdata_service_raw table. I noticed that you do store a service state in the _bin table, but this is a (re)calculated value, not the actual exit code (I know it should be the same). (actually, it's not very clear to me why you recalculate and store it there anyway, apart from possible slight speed improvement when pulling reports?) Storing this value would allow to use the _raw table to do availability calculations (you could write a UDF for MySQL to do this), so up and downtimes can be extracted using simple sql statements. This in turn would make pulling reports out of Nagios easier and more flexible. My EUR (or $) 0.02 Tim. |
From: Ben C. <Be...@cl...> - 2004-07-05 10:15:26
|
Tim, Very glad to hear this. I has this once my self a while back. Took me ages to work it out :) Glad it's all working. Ben Tim Wuyts wrote: > Ben, > > Thx for the tip. The mysql version on the machine running perfparse was > indeed different (older: 3.23!) from the server (4.0.17). I upgraded the > client to 4.0.20, and at the same time (mysql wouldn't compile otherwise) > upgraded to the latest g++. > > This solved the problem. > > Thanks! > > Tim. > > >>-----Original Message----- >>From: per...@li... >>[mailto:per...@li...] On >>Behalf Of Ben Clewett >>Sent: maandag 5 juli 2004 9:46 >>To: Tim Wuyts >>Cc: per...@li... >>Subject: Re: [Perfparse-users] Segmentation fault running perfparse >> >>Tim, >> >>Oh dear, I've not seen this. >> >>You are probably not the only person, just the only one who has come >>reported this problem. >> >>Can I ask what system you are using, version of MySQL, OS version etc. >> >>My suspicion is that your version of the MySQL client libs is >>different >>from the MySQL server. Possibly you have two versions of the client >>libs in different directories. Can you check this first of all? >> >>You are a lot closer to the problem than us. Since it works >>perfectly >>with us. If there is anything else you can do to find the exact line >>which causes the failure, it would be of great interest. >> >>Regards, >> >>Ben Clewett. >> >> >>Tim Wuyts wrote: >> >>>Greetings Programs! >>> >>>I encountered a problem running perfparse (v0.10 and >> >>v0.0.11): whenever I >> >>>run it to parse the log file, it gives me a segmentation >> >>fault. As long as >> >>>you don't request to parse the logfile, e.g. by using --help or >>>--show-config, it runs fine. >>> >>>So I dug into the code and found that the call to the mysql >> >>library to >> >>>connect to the db (in common.c) causes the segmentation >> >>fault. I have no >> >>>clue as to why. I compiled a small program that connects to >> >>the database >> >>>using the same call with the same parameters, and that >> >>works perfectly. >> >>>I circumvented the problem by using mysql_connect and >> >>mysql_select_db >> >>>instead of mysql_real_connect. This works fine! The only >> >>problem with this >> >>>construct is that according to the mysql manual, the >> >>mysql_connect function >> >>>is deprecated. >>> >>>A few questions about this: >>>- Am I the only one experiencing this problem? >>>- What more info do you (the developers) need to look into >> >>this? (providing >> >>>you'd want to :) ) >>> >>>Regards, >>>Tim. >>> >>> >>> >>>------------------------------------------------------- >>>This SF.Net email sponsored by Black Hat Briefings & Training. >>>Attend Black Hat Briefings & Training, Las Vegas July 24-29 - >>>digital self defense, top technical experts, no vendor pitches, >>>unmatched networking opportunities. Visit www.blackhat.com >>>_______________________________________________ >>>Perfparse-users mailing list >>>Per...@li... >>>https://lists.sourceforge.net/lists/listinfo/perfparse-users >>> >> >> >> >>------------------------------------------------------- >>This SF.Net email sponsored by Black Hat Briefings & Training. >>Attend Black Hat Briefings & Training, Las Vegas July 24-29 - >>digital self defense, top technical experts, no vendor pitches, >>unmatched networking opportunities. Visit www.blackhat.com >>_______________________________________________ >>Perfparse-users mailing list >>Per...@li... >>https://lists.sourceforge.net/lists/listinfo/perfparse-users >> >> > > > > > ------------------------------------------------------- > This SF.Net email sponsored by Black Hat Briefings & Training. > Attend Black Hat Briefings & Training, Las Vegas July 24-29 - > digital self defense, top technical experts, no vendor pitches, > unmatched networking opportunities. Visit www.blackhat.com > _______________________________________________ > Perfparse-users mailing list > Per...@li... > https://lists.sourceforge.net/lists/listinfo/perfparse-users > |
From: Tim W. <Tim...@pi...> - 2004-07-05 09:58:16
|
Ben, Thx for the tip. The mysql version on the machine running perfparse was indeed different (older: 3.23!) from the server (4.0.17). I upgraded the client to 4.0.20, and at the same time (mysql wouldn't compile otherwise) upgraded to the latest g++. This solved the problem. Thanks! Tim. > -----Original Message----- > From: per...@li... > [mailto:per...@li...] On > Behalf Of Ben Clewett > Sent: maandag 5 juli 2004 9:46 > To: Tim Wuyts > Cc: per...@li... > Subject: Re: [Perfparse-users] Segmentation fault running perfparse > > Tim, > > Oh dear, I've not seen this. > > You are probably not the only person, just the only one who has come > reported this problem. > > Can I ask what system you are using, version of MySQL, OS version etc. > > My suspicion is that your version of the MySQL client libs is > different > from the MySQL server. Possibly you have two versions of the client > libs in different directories. Can you check this first of all? > > You are a lot closer to the problem than us. Since it works > perfectly > with us. If there is anything else you can do to find the exact line > which causes the failure, it would be of great interest. > > Regards, > > Ben Clewett. > > > Tim Wuyts wrote: > > Greetings Programs! > > > > I encountered a problem running perfparse (v0.10 and > v0.0.11): whenever I > > run it to parse the log file, it gives me a segmentation > fault. As long as > > you don't request to parse the logfile, e.g. by using --help or > > --show-config, it runs fine. > > > > So I dug into the code and found that the call to the mysql > library to > > connect to the db (in common.c) causes the segmentation > fault. I have no > > clue as to why. I compiled a small program that connects to > the database > > using the same call with the same parameters, and that > works perfectly. > > > > I circumvented the problem by using mysql_connect and > mysql_select_db > > instead of mysql_real_connect. This works fine! The only > problem with this > > construct is that according to the mysql manual, the > mysql_connect function > > is deprecated. > > > > A few questions about this: > > - Am I the only one experiencing this problem? > > - What more info do you (the developers) need to look into > this? (providing > > you'd want to :) ) > > > > Regards, > > Tim. > > > > > > > > ------------------------------------------------------- > > This SF.Net email sponsored by Black Hat Briefings & Training. > > Attend Black Hat Briefings & Training, Las Vegas July 24-29 - > > digital self defense, top technical experts, no vendor pitches, > > unmatched networking opportunities. Visit www.blackhat.com > > _______________________________________________ > > Perfparse-users mailing list > > Per...@li... > > https://lists.sourceforge.net/lists/listinfo/perfparse-users > > > > > > ------------------------------------------------------- > This SF.Net email sponsored by Black Hat Briefings & Training. > Attend Black Hat Briefings & Training, Las Vegas July 24-29 - > digital self defense, top technical experts, no vendor pitches, > unmatched networking opportunities. Visit www.blackhat.com > _______________________________________________ > Perfparse-users mailing list > Per...@li... > https://lists.sourceforge.net/lists/listinfo/perfparse-users > > |
From: Ben C. <Be...@cl...> - 2004-07-05 07:43:45
|
Tim, Oh dear, I've not seen this. You are probably not the only person, just the only one who has come reported this problem. Can I ask what system you are using, version of MySQL, OS version etc. My suspicion is that your version of the MySQL client libs is different from the MySQL server. Possibly you have two versions of the client libs in different directories. Can you check this first of all? You are a lot closer to the problem than us. Since it works perfectly with us. If there is anything else you can do to find the exact line which causes the failure, it would be of great interest. Regards, Ben Clewett. Tim Wuyts wrote: > Greetings Programs! > > I encountered a problem running perfparse (v0.10 and v0.0.11): whenever I > run it to parse the log file, it gives me a segmentation fault. As long as > you don't request to parse the logfile, e.g. by using --help or > --show-config, it runs fine. > > So I dug into the code and found that the call to the mysql library to > connect to the db (in common.c) causes the segmentation fault. I have no > clue as to why. I compiled a small program that connects to the database > using the same call with the same parameters, and that works perfectly. > > I circumvented the problem by using mysql_connect and mysql_select_db > instead of mysql_real_connect. This works fine! The only problem with this > construct is that according to the mysql manual, the mysql_connect function > is deprecated. > > A few questions about this: > - Am I the only one experiencing this problem? > - What more info do you (the developers) need to look into this? (providing > you'd want to :) ) > > Regards, > Tim. > > > > ------------------------------------------------------- > This SF.Net email sponsored by Black Hat Briefings & Training. > Attend Black Hat Briefings & Training, Las Vegas July 24-29 - > digital self defense, top technical experts, no vendor pitches, > unmatched networking opportunities. Visit www.blackhat.com > _______________________________________________ > Perfparse-users mailing list > Per...@li... > https://lists.sourceforge.net/lists/listinfo/perfparse-users > |
From: Tim W. <Tim...@pi...> - 2004-07-05 07:05:50
|
Greetings Programs! I encountered a problem running perfparse (v0.10 and v0.0.11): whenever I run it to parse the log file, it gives me a segmentation fault. As long as you don't request to parse the logfile, e.g. by using --help or --show-config, it runs fine. So I dug into the code and found that the call to the mysql library to connect to the db (in common.c) causes the segmentation fault. I have no clue as to why. I compiled a small program that connects to the database using the same call with the same parameters, and that works perfectly. I circumvented the problem by using mysql_connect and mysql_select_db instead of mysql_real_connect. This works fine! The only problem with this construct is that according to the mysql manual, the mysql_connect function is deprecated. A few questions about this: - Am I the only one experiencing this problem? - What more info do you (the developers) need to look into this? (providing you'd want to :) ) Regards, Tim. |
From: Sean H. <SHa...@nw...> - 2004-07-02 19:31:19
|
If anybody is trying to make PerfParse work with nagios-cvs, be aware = that the variable names for $OUTPUT and $PERFDATA seem to have changed = to $SERVICEOUTPUT and $SERVICEPERFDATA, respectively. It is working for = me with Mandrake 10 Final. Also, if you are using Mandrake, don't even = bother with the Nagios RPMS, just compile from source. Mandrake makes so = many changes to the package to try and make it fit in with their = directory scheme, it breaks almost everything that uses the default = settings for nagios. Sean Harbour sha...@nw... |
From: Cook, G. <GW...@ma...> - 2004-07-02 16:48:40
|
per...@li... wrote: > I compiled Nagios cvs on a Mandrake 10 Final linux box with >=20 > ./configure --enable-embedded-perl --with-perlcache > --with-file-perfdata=20 >=20 [snip]=20 > I then recompiled Nagios with >=20 > ./configure --with-file-perfdata >=20 > only, but no changes were noted. >=20 > Any pointers on what I should check next? >=20 > Sean Harbour > sha...@nw... >=20 Check the PerfParse docs on enabling Performance Data. You might be running into the issue where enabling performance data in the Nagios configs doesn't actually turn it on, so you need to do so from the Nagios 'Process Info' page. http://perfparse.sourceforge.net/docs.php#enablingpp If this doesn't fix it, try compiling the stable Nagios 1.2 instead of the CVS (you'll still want the CVS plugins though). Garry W. Cook, CCNA Network Infrastructure Manager MACTEC, Inc. - http://www.mactec.com/ 303.308.6228 (Office) - 720.220.1862 (Mobile) |
From: Sean H. <SHa...@nw...> - 2004-07-02 16:15:43
|
I compiled Nagios cvs on a Mandrake 10 Final linux box with=20 ./configure --enable-embedded-perl --with-perlcache --with-file-perfdata along with the plugins from the head branch. Then I configured a couple = of test clients on it, and enabled performance monitoring per the = directions in the cvs documents for nagios. Everything looks good, = except the hostperf.log has zero data, and the log entries in = serviceperf.log look like the following: 1088783708 switch2 PING $OUTPUT$ $PERFDATA$ 1088783708 sharbour-wks1 HTTP $OUTPUT$ $PERFDATA$ 1088783718 eboss-wks2 ETHERNET_IN $OUTPUT$ = $PERFDATA$ 1088783738 eboss-wks2 PROCSTATE $OUTPUT$ = $PERFDATA$ 1088783758 nagioshost Current Users $OUTPUT$ = $PERFDATA$ 1088783788 eboss-wks2 ETHERNET_OUT $OUTPUT$ = $PERFDATA$ 1088783808 eboss-wks2 SERVICE $OUTPUT$ $PERFDATA$ 1088783818 nagioshost Total Processes $OUTPUT$ = $PERFDATA$ I then recompiled Nagios with=20 ./configure --with-file-perfdata only, but no changes were noted. Any pointers on what I should check next? Sean Harbour sha...@nw... |
From: Ben C. <Be...@cl...> - 2004-06-30 11:11:03
|
Version 0.0.11 is live. Regards, Ben |
From: Ben C. <Be...@cl...> - 2004-06-30 07:23:16
|
Andy, Sorry to hear about the problems with the check_nt plugin. Please put in a request to the nagios plugin support mailing list. I have seen comments like this before. There is probably some development work being completed. By putting in a request, you may speed development and ensure all the metric you are interested in will be supported. Regards, Ben. Andy Stein wrote: > Hi Garry, > > I got it. So the short answer is that check_nt doesn't produce the > additional output. And that comprises 90% of my checks. > > Thanks! > Andy > > >>per...@li... wrote: >> >>>Hey Gang, >>> >>>I just installed the app and I seem to be missing my other service >>>checks from the graphs. >>> >>>I am only seeing available metrics to graph time. What about NT >>>Services (disk, cpu, etc.) >>> >>>I installed v.10 and I am very interested in having these metrics. >>>Did I do something wrong during the compile or is this by design? >>> >>>Thanks! >>>Andy >> >>PerfParse should currently be limited only by the Performance Data >>returned by the plugins. >> >>Run your plugin from the command line and see if it outputs performance >>data (some are not yet configured to do so). >>If the command returns performance data, it should appear in PerfParse. >> >>/usr/local/nagios/libexec: ./check_load -w 3,3,3 -c 5,5,5 >>OK - load average: 1.56, 1.60, 1.68|load1=1;3;5;0 load5=1;3;5;0 >>load15=1;3;5;0 >> >>My check_load plugin returns the output shown above. Everything before >>the '|' is the old-style output, everything after is performance data. >>If you see performance data but this is not showing graphs in PerfParse, >>submit a bug report at >>http://sourceforge.net/tracker/?group_id=109355&atid=653190. >>If the plugins you are concerned about don't show a pipe and data >>similar to that shown above, then the plugin is the problem. >> >>If you find that your plugins are not producing performance data, there >>are a few things that you can do: >>-Make sure you have the latest Nagios Plugins from CVS >>(http://sourceforge.net/cvs/?group_id=29880) >>-Wait for the next version of stable Nagios Plugins to be released >>(http://sourceforge.net/project/showfiles.php?group_id=29880) >>-Edit the plugins to produce performance data and submit patches back to >>the development team >>(http://nagiosplug.sourceforge.net/developer-guidelines.html#AEN185 & >>http://nagiosplug.sourceforge.net/developer-guidelines.html#PATCHES) >> >>Garry W. Cook, CCNA >>Network Infrastructure Manager >>MACTEC, Inc. - http://www.mactec.com/ >>303.308.6228 (Office) - 720.220.1862 (Mobile) >> > > > > > ------------------------------------------------------- > This SF.Net email sponsored by Black Hat Briefings & Training. > Attend Black Hat Briefings & Training, Las Vegas July 24-29 - > digital self defense, top technical experts, no vendor pitches, > unmatched networking opportunities. Visit www.blackhat.com > _______________________________________________ > Perfparse-users mailing list > Per...@li... > https://lists.sourceforge.net/lists/listinfo/perfparse-users > |
From: Andy S. <new...@at...> - 2004-06-29 12:29:48
|
Hi Garry, I got it. So the short answer is that check_nt doesn't produce the additional output. And that comprises 90% of my checks. Thanks! Andy > per...@li... wrote: >> Hey Gang, >> >> I just installed the app and I seem to be missing my other service >> checks from the graphs. >> >> I am only seeing available metrics to graph time. What about NT >> Services (disk, cpu, etc.) >> >> I installed v.10 and I am very interested in having these metrics. >> Did I do something wrong during the compile or is this by design? >> >> Thanks! >> Andy > > PerfParse should currently be limited only by the Performance Data > returned by the plugins. > > Run your plugin from the command line and see if it outputs performance > data (some are not yet configured to do so). > If the command returns performance data, it should appear in PerfParse. > > /usr/local/nagios/libexec: ./check_load -w 3,3,3 -c 5,5,5 > OK - load average: 1.56, 1.60, 1.68|load1=1;3;5;0 load5=1;3;5;0 > load15=1;3;5;0 > > My check_load plugin returns the output shown above. Everything before > the '|' is the old-style output, everything after is performance data. > If you see performance data but this is not showing graphs in PerfParse, > submit a bug report at > http://sourceforge.net/tracker/?group_id=109355&atid=653190. > If the plugins you are concerned about don't show a pipe and data > similar to that shown above, then the plugin is the problem. > > If you find that your plugins are not producing performance data, there > are a few things that you can do: > -Make sure you have the latest Nagios Plugins from CVS > (http://sourceforge.net/cvs/?group_id=29880) > -Wait for the next version of stable Nagios Plugins to be released > (http://sourceforge.net/project/showfiles.php?group_id=29880) > -Edit the plugins to produce performance data and submit patches back to > the development team > (http://nagiosplug.sourceforge.net/developer-guidelines.html#AEN185 & > http://nagiosplug.sourceforge.net/developer-guidelines.html#PATCHES) > > Garry W. Cook, CCNA > Network Infrastructure Manager > MACTEC, Inc. - http://www.mactec.com/ > 303.308.6228 (Office) - 720.220.1862 (Mobile) > |
From: Cook, G. <GW...@ma...> - 2004-06-28 21:07:36
|
per...@li... wrote: > Hey Gang, >=20 > I just installed the app and I seem to be missing my other service > checks from the graphs. >=20 > I am only seeing available metrics to graph time. What about NT > Services (disk, cpu, etc.) >=20 > I installed v.10 and I am very interested in having these metrics.=20 > Did I do something wrong during the compile or is this by design? >=20 > Thanks! > Andy PerfParse should currently be limited only by the Performance Data returned by the plugins. Run your plugin from the command line and see if it outputs performance data (some are not yet configured to do so). If the command returns performance data, it should appear in PerfParse. /usr/local/nagios/libexec: ./check_load -w 3,3,3 -c 5,5,5 OK - load average: 1.56, 1.60, 1.68|load1=3D1;3;5;0 load5=3D1;3;5;0 load15=3D1;3;5;0 My check_load plugin returns the output shown above. Everything before the '|' is the old-style output, everything after is performance data.=20 If you see performance data but this is not showing graphs in PerfParse, submit a bug report at http://sourceforge.net/tracker/?group_id=3D109355&atid=3D653190.=20 If the plugins you are concerned about don't show a pipe and data similar to that shown above, then the plugin is the problem. If you find that your plugins are not producing performance data, there are a few things that you can do: -Make sure you have the latest Nagios Plugins from CVS (http://sourceforge.net/cvs/?group_id=3D29880) -Wait for the next version of stable Nagios Plugins to be released (http://sourceforge.net/project/showfiles.php?group_id=3D29880) -Edit the plugins to produce performance data and submit patches back to the development team (http://nagiosplug.sourceforge.net/developer-guidelines.html#AEN185 & http://nagiosplug.sourceforge.net/developer-guidelines.html#PATCHES) Garry W. Cook, CCNA Network Infrastructure Manager MACTEC, Inc. - http://www.mactec.com/ 303.308.6228 (Office) - 720.220.1862 (Mobile) |
From: Andy S. <new...@at...> - 2004-06-28 20:39:10
|
Hey Gang, I just installed the app and I seem to be missing my other service checks from the graphs. I am only seeing available metrics to graph time. What about NT Services (disk, cpu, etc.) I installed v.10 and I am very interested in having these metrics. Did I do something wrong during the compile or is this by design? Thanks! Andy |
From: Sand P. <Phi...@sy...> - 2004-06-24 09:52:38
|
Ah ok, so glib-devel and *NOT* glib2-devel. Ok, works fine now! Thanks! =20 > -----Original Message----- > From: Ben Clewett [mailto:be...@cl...]=20 > Sent: Thursday, June 24, 2004 11:48 AM > To: Sand Philipp > Cc: per...@li... > Subject: Re: [Perfparse-users] Compiling perfparse 0.10 >=20 > Phillip, >=20 > I have been told by somebody who knows far more than I: >=20 > The package is glib-devel-1.2.10-12.1.1.i386.rpm on fedora 2=20 > and glib-devel-1.2.10-11.i386.rpm on fedora 1. >=20 > Hope this works for you. >=20 > Regards, >=20 > Ben >=20 >=20 > Sand Philipp wrote: >=20 > > Ben, > >=20 > > I'm running nagios and perfparse on fedora core 1 on one=20 > machine and=20 > > fedora core 2 on the other, glib2-devel ist not installed=20 > by default.=20 > > I just installed glib2-devel 2.4.0-1.i386 on the fedora=20 > core 2 server,=20 > > but i get the same error message, still checking for=20 > glib-config... no > > configure: error: Could not find glib-config > >=20 > > :-/ > >=20 > >=20 > >=20 > >=20 > >>-----Original Message----- > >>From: Ben Clewett [mailto:be...@cl...] > >>Sent: Thursday, June 24, 2004 11:13 AM > >>To: Sand Philipp > >>Cc: per...@li... > >>Subject: Re: [Perfparse-users] Compiling perfparse 0.10 > >> > >>Philipp, > >> > >>Can you check you have installed 'glib2-devel'? Sorry, I=20 > know I have=20 > >>already made you upgrade your MySQL :) > >> > >>This is required for versions 0.10 upwards. This gives the=20 > developers=20 > >>significant programming ability to continue developing PerfParse. > >> > >>It is unusual that this is not installed on your system. Can you=20 > >>please let me know the operating system and it's version, which you=20= > >>are using so that we can help other users? > >> > >>Thanks for brining this to our attention, > >> > >>Kind regards, > >> > >>Ben Clewett. > >> > >>Sand Philipp wrote: > >> > >> > >>>Hi, > >>> > >>>I just looked at the perparse homepage this mornign and > >> > >>found the new > >> > >>>version 0.10. I downloaded it and tried to compile it with > >> > >>./configure > >> > >>>--prefix=3D/usr/local/nagios > >>>--with-imagedir=3D/usr/local/nagios/share/images/ > >>>--with-cgidir=3D/usr/local/nagios/sbin/ > >>>--with-http_image_path=3D/nagios/images > >>> > >>>Everything went fine until this:=20 > >>> > >>>checking for glib-config... no > >>>configure: error: Could not find glib-config > >>> > >>>I got perfparse 0.08 running, what new packages do i need now? > >>>I got those installed: > >>>glib-1.2.10-11 > >>>glibc-common-2.3.2-101.4 > >>>glib2-2.2.3-1.1 > >>>glibc-kernheaders-2.4-8.36 > >>>glibc-2.3.2-101.4 > >>>glibc-headers-2.3.2-101.4 > >>>glibc-devel-2.3.2-101.4 > >>> > >>> > >>>Regards, > >>>Philipp > >>> > >>>_____________________________ > >>> > >>>Philipp Sand > >>>OC-CC-TEC-SYS > >>> > >>>SYCOR GmbH > >>>Heinrich-von-Stephan-Stra=DFe 1-5 > >>>D - 37073 G=F6ttingen > >>> > >>>Telefon +49 (0) 551 / 490 - 0 > >>>Telefax +49 (0) 551 / 490 - 2000 > >>> > >>>phi...@sy... > >>>www.sycor.de > >>>------------------------------------------------ > >>> > >>> > >>> > >>>************************************************ > >>> > >>>sycor plastics - die neue Branchenl=F6sung f=FCr die=20 > Kunststoffindustrie > >>> > >>>www.sycor-plastics.de > >>> > >>>************************************************ > >>> > >>> > >>> > >>> > >>>Diese E-Mail ist vertraulich und kann dar=FCber hinaus > >> > >>pers=F6nliche Informationen beinhalten. Wenn Sie nicht der=20 > >>bestimmungsgem=E4=DFe Empf=E4nger sind, l=F6schen Sie bitte die E-Mai= l und=20 > >>deren Anh=E4nge sofort und benachrichtigen Sie uns dar=FCber. Die Fir= ma=20 > >>sycor willigt in keine Vertr=E4ge oder vertragliche=20 > Verpflichtungen ein=20 > >>oder =FCbermittelt rechtsverbindliche Angebote, die in Form=20 > von E-Mail=20 > >>versandt werden, sofern dies nicht ausdr=FCcklich in=20 > schriftlicher Form=20 > >>zwischen den Parteien vereinbart wurde. > >> > >>>This e-mail is confidential and may contain personal and/or > >> > >>privileged information. If you are not the intended=20 > recipient please=20 > >>delete this e-mail and all attachments immediately and=20 > inform us. The=20 > >>company sycor does not agree with contracts or contract obligations=20= > >>sent by e-mail, neither do we transmit legally binding offers by=20 > >>e-mail, unless this is not expressly agreed upon between=20 > the parties=20 > >>and documented in written form. > >> > >>> > >>> > >>>------------------------------------------------------- > >>>This SF.Net email sponsored by Black Hat Briefings & Training. > >>>Attend Black Hat Briefings & Training, Las Vegas July 24-29 > >> > >>- digital > >> > >>>self defense, top technical experts, no vendor pitches, unmatched=20= > >>>networking opportunities. Visit www.blackhat.com=20 > >>>_______________________________________________ > >>>Perfparse-users mailing list > >>>Per...@li... > >>>https://lists.sourceforge.net/lists/listinfo/perfparse-users > >>> > >> > >> > >=20 > >=20 > > ************************************************ > >=20 > > sycor plastics - die neue Branchenl=F6sung f=FCr die Kunststoffindust= rie > >=20 > > www.sycor-plastics.de > >=20 > > ************************************************ > >=20 > >=20 > >=20 > >=20 > > Diese E-Mail ist vertraulich und kann dar=FCber hinaus=20 > pers=F6nliche Informationen beinhalten. Wenn Sie nicht der=20 > bestimmungsgem=E4=DFe Empf=E4nger sind, l=F6schen Sie bitte die=20 > E-Mail und deren Anh=E4nge sofort und benachrichtigen Sie uns=20 > dar=FCber. Die Firma sycor willigt in keine Vertr=E4ge oder=20 > vertragliche Verpflichtungen ein oder =FCbermittelt=20 > rechtsverbindliche Angebote, die in Form von E-Mail versandt=20 > werden, sofern dies nicht ausdr=FCcklich in schriftlicher Form=20 > zwischen den Parteien vereinbart wurde. > >=20 > > This e-mail is confidential and may contain personal and/or=20 > privileged information. If you are not the intended recipient=20 > please delete this e-mail and all attachments immediately and=20 > inform us. The company sycor does not agree with contracts or=20 > contract obligations sent by e-mail, neither do we transmit=20 > legally binding offers by e-mail, unless this is not=20 > expressly agreed upon between the parties and documented in=20 > written form. > >=20 > >=20 >=20 >=20 ************************************************ sycor plastics - die neue Branchenl=F6sung f=FCr die Kunststoffindustrie www.sycor-plastics.de ************************************************ Diese E-Mail ist vertraulich und kann dar=FCber hinaus pers=F6nliche Info= rmationen beinhalten. Wenn Sie nicht der bestimmungsgem=E4=DFe Empf=E4nge= r sind, l=F6schen Sie bitte die E-Mail und deren Anh=E4nge sofort und ben= achrichtigen Sie uns dar=FCber. Die Firma sycor willigt in keine Vertr=E4= ge oder vertragliche Verpflichtungen ein oder =FCbermittelt rechtsverbind= liche Angebote, die in Form von E-Mail versandt werden, sofern dies nicht= ausdr=FCcklich in schriftlicher Form zwischen den Parteien vereinbart wu= rde. This e-mail is confidential and may contain personal and/or privileged in= formation. If you are not the intended recipient please delete this e-mai= l and all attachments immediately and inform us. The company sycor does n= ot agree with contracts or contract obligations sent by e-mail, neither d= o we transmit legally binding offers by e-mail, unless this is not expres= sly agreed upon between the parties and documented in written form. |
From: Ben C. <be...@cl...> - 2004-06-24 09:47:54
|
Phillip, I have been told by somebody who knows far more than I: The package is glib-devel-1.2.10-12.1.1.i386.rpm on fedora 2 and glib-devel-1.2.10-11.i386.rpm on fedora 1. Hope this works for you. Regards, Ben Sand Philipp wrote: > Ben, > > I'm running nagios and perfparse on fedora core 1 on one machine and fedora core 2 on the other, glib2-devel ist not installed by default. I just installed glib2-devel 2.4.0-1.i386 on the fedora core 2 server, but i get the same error message, still > checking for glib-config... no > configure: error: Could not find glib-config > > :-/ > > > > >>-----Original Message----- >>From: Ben Clewett [mailto:be...@cl...] >>Sent: Thursday, June 24, 2004 11:13 AM >>To: Sand Philipp >>Cc: per...@li... >>Subject: Re: [Perfparse-users] Compiling perfparse 0.10 >> >>Philipp, >> >>Can you check you have installed 'glib2-devel'? Sorry, I >>know I have already made you upgrade your MySQL :) >> >>This is required for versions 0.10 upwards. This gives the >>developers significant programming ability to continue >>developing PerfParse. >> >>It is unusual that this is not installed on your system. Can >>you please let me know the operating system and it's version, >>which you are using so that we can help other users? >> >>Thanks for brining this to our attention, >> >>Kind regards, >> >>Ben Clewett. >> >>Sand Philipp wrote: >> >> >>>Hi, >>> >>>I just looked at the perparse homepage this mornign and >> >>found the new >> >>>version 0.10. I downloaded it and tried to compile it with >> >>./configure >> >>>--prefix=/usr/local/nagios >>>--with-imagedir=/usr/local/nagios/share/images/ >>>--with-cgidir=/usr/local/nagios/sbin/ >>>--with-http_image_path=/nagios/images >>> >>>Everything went fine until this: >>> >>>checking for glib-config... no >>>configure: error: Could not find glib-config >>> >>>I got perfparse 0.08 running, what new packages do i need now? >>>I got those installed: >>>glib-1.2.10-11 >>>glibc-common-2.3.2-101.4 >>>glib2-2.2.3-1.1 >>>glibc-kernheaders-2.4-8.36 >>>glibc-2.3.2-101.4 >>>glibc-headers-2.3.2-101.4 >>>glibc-devel-2.3.2-101.4 >>> >>> >>>Regards, >>>Philipp >>> >>>_____________________________ >>> >>>Philipp Sand >>>OC-CC-TEC-SYS >>> >>>SYCOR GmbH >>>Heinrich-von-Stephan-Straße 1-5 >>>D - 37073 Göttingen >>> >>>Telefon +49 (0) 551 / 490 - 0 >>>Telefax +49 (0) 551 / 490 - 2000 >>> >>>phi...@sy... >>>www.sycor.de >>>------------------------------------------------ >>> >>> >>> >>>************************************************ >>> >>>sycor plastics - die neue Branchenlösung für die Kunststoffindustrie >>> >>>www.sycor-plastics.de >>> >>>************************************************ >>> >>> >>> >>> >>>Diese E-Mail ist vertraulich und kann darüber hinaus >> >>persönliche Informationen beinhalten. Wenn Sie nicht der >>bestimmungsgemäße Empfänger sind, löschen Sie bitte die >>E-Mail und deren Anhänge sofort und benachrichtigen Sie uns >>darüber. Die Firma sycor willigt in keine Verträge oder >>vertragliche Verpflichtungen ein oder übermittelt >>rechtsverbindliche Angebote, die in Form von E-Mail versandt >>werden, sofern dies nicht ausdrücklich in schriftlicher Form >>zwischen den Parteien vereinbart wurde. >> >>>This e-mail is confidential and may contain personal and/or >> >>privileged information. If you are not the intended recipient >>please delete this e-mail and all attachments immediately and >>inform us. The company sycor does not agree with contracts or >>contract obligations sent by e-mail, neither do we transmit >>legally binding offers by e-mail, unless this is not >>expressly agreed upon between the parties and documented in >>written form. >> >>> >>> >>>------------------------------------------------------- >>>This SF.Net email sponsored by Black Hat Briefings & Training. >>>Attend Black Hat Briefings & Training, Las Vegas July 24-29 >> >>- digital >> >>>self defense, top technical experts, no vendor pitches, unmatched >>>networking opportunities. Visit www.blackhat.com >>>_______________________________________________ >>>Perfparse-users mailing list >>>Per...@li... >>>https://lists.sourceforge.net/lists/listinfo/perfparse-users >>> >> >> > > > ************************************************ > > sycor plastics - die neue Branchenlösung für die Kunststoffindustrie > > www.sycor-plastics.de > > ************************************************ > > > > > Diese E-Mail ist vertraulich und kann darüber hinaus persönliche Informationen beinhalten. Wenn Sie nicht der bestimmungsgemäße Empfänger sind, löschen Sie bitte die E-Mail und deren Anhänge sofort und benachrichtigen Sie uns darüber. Die Firma sycor willigt in keine Verträge oder vertragliche Verpflichtungen ein oder übermittelt rechtsverbindliche Angebote, die in Form von E-Mail versandt werden, sofern dies nicht ausdrücklich in schriftlicher Form zwischen den Parteien vereinbart wurde. > > This e-mail is confidential and may contain personal and/or privileged information. If you are not the intended recipient please delete this e-mail and all attachments immediately and inform us. The company sycor does not agree with contracts or contract obligations sent by e-mail, neither do we transmit legally binding offers by e-mail, unless this is not expressly agreed upon between the parties and documented in written form. > > |
From: Sand P. <Phi...@sy...> - 2004-06-24 09:24:25
|
Ben, I'm running nagios and perfparse on fedora core 1 on one machine and fedo= ra core 2 on the other, glib2-devel ist not installed by default. I just = installed glib2-devel 2.4.0-1.i386 on the fedora core 2 server, but i get= the same error message, still checking for glib-config... no configure: error: Could not find glib-config :-/ > -----Original Message----- > From: Ben Clewett [mailto:be...@cl...]=20 > Sent: Thursday, June 24, 2004 11:13 AM > To: Sand Philipp > Cc: per...@li... > Subject: Re: [Perfparse-users] Compiling perfparse 0.10 >=20 > Philipp, >=20 > Can you check you have installed 'glib2-devel'? Sorry, I=20 > know I have already made you upgrade your MySQL :) >=20 > This is required for versions 0.10 upwards. This gives the=20 > developers significant programming ability to continue=20 > developing PerfParse. >=20 > It is unusual that this is not installed on your system. Can=20 > you please let me know the operating system and it's version,=20 > which you are using so that we can help other users? >=20 > Thanks for brining this to our attention, >=20 > Kind regards, >=20 > Ben Clewett. >=20 > Sand Philipp wrote: >=20 > > Hi, > >=20 > > I just looked at the perparse homepage this mornign and=20 > found the new=20 > > version 0.10. I downloaded it and tried to compile it with=20 > ./configure=20 > > --prefix=3D/usr/local/nagios=20 > > --with-imagedir=3D/usr/local/nagios/share/images/=20 > > --with-cgidir=3D/usr/local/nagios/sbin/=20 > > --with-http_image_path=3D/nagios/images > >=20 > > Everything went fine until this:=20 > >=20 > > checking for glib-config... no > > configure: error: Could not find glib-config > >=20 > > I got perfparse 0.08 running, what new packages do i need now? > > I got those installed: > > glib-1.2.10-11 > > glibc-common-2.3.2-101.4 > > glib2-2.2.3-1.1 > > glibc-kernheaders-2.4-8.36 > > glibc-2.3.2-101.4 > > glibc-headers-2.3.2-101.4 > > glibc-devel-2.3.2-101.4 > >=20 > >=20 > > Regards, > > Philipp > >=20 > > _____________________________ > >=20 > > Philipp Sand > > OC-CC-TEC-SYS > >=20 > > SYCOR GmbH > > Heinrich-von-Stephan-Stra=DFe 1-5 > > D - 37073 G=F6ttingen > >=20 > > Telefon +49 (0) 551 / 490 - 0 > > Telefax +49 (0) 551 / 490 - 2000 > >=20 > > phi...@sy... > > www.sycor.de > > ------------------------------------------------ > >=20 > >=20 > >=20 > > ************************************************ > >=20 > > sycor plastics - die neue Branchenl=F6sung f=FCr die Kunststoffindust= rie > >=20 > > www.sycor-plastics.de > >=20 > > ************************************************ > >=20 > >=20 > >=20 > >=20 > > Diese E-Mail ist vertraulich und kann dar=FCber hinaus=20 > pers=F6nliche Informationen beinhalten. Wenn Sie nicht der=20 > bestimmungsgem=E4=DFe Empf=E4nger sind, l=F6schen Sie bitte die=20 > E-Mail und deren Anh=E4nge sofort und benachrichtigen Sie uns=20 > dar=FCber. Die Firma sycor willigt in keine Vertr=E4ge oder=20 > vertragliche Verpflichtungen ein oder =FCbermittelt=20 > rechtsverbindliche Angebote, die in Form von E-Mail versandt=20 > werden, sofern dies nicht ausdr=FCcklich in schriftlicher Form=20 > zwischen den Parteien vereinbart wurde. > >=20 > > This e-mail is confidential and may contain personal and/or=20 > privileged information. If you are not the intended recipient=20 > please delete this e-mail and all attachments immediately and=20 > inform us. The company sycor does not agree with contracts or=20 > contract obligations sent by e-mail, neither do we transmit=20 > legally binding offers by e-mail, unless this is not=20 > expressly agreed upon between the parties and documented in=20 > written form. > >=20 > >=20 > >=20 > > ------------------------------------------------------- > > This SF.Net email sponsored by Black Hat Briefings & Training. > > Attend Black Hat Briefings & Training, Las Vegas July 24-29=20 > - digital=20 > > self defense, top technical experts, no vendor pitches, unmatched=20 > > networking opportunities. Visit www.blackhat.com=20 > > _______________________________________________ > > Perfparse-users mailing list > > Per...@li... > > https://lists.sourceforge.net/lists/listinfo/perfparse-users > >=20 >=20 >=20 ************************************************ sycor plastics - die neue Branchenl=F6sung f=FCr die Kunststoffindustrie www.sycor-plastics.de ************************************************ Diese E-Mail ist vertraulich und kann dar=FCber hinaus pers=F6nliche Info= rmationen beinhalten. Wenn Sie nicht der bestimmungsgem=E4=DFe Empf=E4nge= r sind, l=F6schen Sie bitte die E-Mail und deren Anh=E4nge sofort und ben= achrichtigen Sie uns dar=FCber. Die Firma sycor willigt in keine Vertr=E4= ge oder vertragliche Verpflichtungen ein oder =FCbermittelt rechtsverbind= liche Angebote, die in Form von E-Mail versandt werden, sofern dies nicht= ausdr=FCcklich in schriftlicher Form zwischen den Parteien vereinbart wu= rde. This e-mail is confidential and may contain personal and/or privileged in= formation. If you are not the intended recipient please delete this e-mai= l and all attachments immediately and inform us. The company sycor does n= ot agree with contracts or contract obligations sent by e-mail, neither d= o we transmit legally binding offers by e-mail, unless this is not expres= sly agreed upon between the parties and documented in written form. |
From: Ben C. <be...@cl...> - 2004-06-24 09:13:31
|
Philipp, Can you check you have installed 'glib2-devel'? Sorry, I know I have already made you upgrade your MySQL :) This is required for versions 0.10 upwards. This gives the developers significant programming ability to continue developing PerfParse. It is unusual that this is not installed on your system. Can you please let me know the operating system and it's version, which you are using so that we can help other users? Thanks for brining this to our attention, Kind regards, Ben Clewett. Sand Philipp wrote: > Hi, > > I just looked at the perparse homepage this mornign and found the new version 0.10. I downloaded it and tried to compile it with > ./configure --prefix=/usr/local/nagios --with-imagedir=/usr/local/nagios/share/images/ --with-cgidir=/usr/local/nagios/sbin/ --with-http_image_path=/nagios/images > > Everything went fine until this: > > checking for glib-config... no > configure: error: Could not find glib-config > > I got perfparse 0.08 running, what new packages do i need now? > I got those installed: > glib-1.2.10-11 > glibc-common-2.3.2-101.4 > glib2-2.2.3-1.1 > glibc-kernheaders-2.4-8.36 > glibc-2.3.2-101.4 > glibc-headers-2.3.2-101.4 > glibc-devel-2.3.2-101.4 > > > Regards, > Philipp > > _____________________________ > > Philipp Sand > OC-CC-TEC-SYS > > SYCOR GmbH > Heinrich-von-Stephan-Straße 1-5 > D - 37073 Göttingen > > Telefon +49 (0) 551 / 490 - 0 > Telefax +49 (0) 551 / 490 - 2000 > > phi...@sy... > www.sycor.de > ------------------------------------------------ > > > > ************************************************ > > sycor plastics - die neue Branchenlösung für die Kunststoffindustrie > > www.sycor-plastics.de > > ************************************************ > > > > > Diese E-Mail ist vertraulich und kann darüber hinaus persönliche Informationen beinhalten. Wenn Sie nicht der bestimmungsgemäße Empfänger sind, löschen Sie bitte die E-Mail und deren Anhänge sofort und benachrichtigen Sie uns darüber. Die Firma sycor willigt in keine Verträge oder vertragliche Verpflichtungen ein oder übermittelt rechtsverbindliche Angebote, die in Form von E-Mail versandt werden, sofern dies nicht ausdrücklich in schriftlicher Form zwischen den Parteien vereinbart wurde. > > This e-mail is confidential and may contain personal and/or privileged information. If you are not the intended recipient please delete this e-mail and all attachments immediately and inform us. The company sycor does not agree with contracts or contract obligations sent by e-mail, neither do we transmit legally binding offers by e-mail, unless this is not expressly agreed upon between the parties and documented in written form. > > > > ------------------------------------------------------- > This SF.Net email sponsored by Black Hat Briefings & Training. > Attend Black Hat Briefings & Training, Las Vegas July 24-29 - > digital self defense, top technical experts, no vendor pitches, > unmatched networking opportunities. Visit www.blackhat.com > _______________________________________________ > Perfparse-users mailing list > Per...@li... > https://lists.sourceforge.net/lists/listinfo/perfparse-users > |
From: Sand P. <Phi...@sy...> - 2004-06-24 07:21:46
|
Hi,=20 I just looked at the perparse homepage this mornign and found the new ver= sion 0.10. I downloaded it and tried to compile it with=20 =2E/configure --prefix=3D/usr/local/nagios --with-imagedir=3D/usr/local/n= agios/share/images/ --with-cgidir=3D/usr/local/nagios/sbin/ --with-http_i= mage_path=3D/nagios/images Everything went fine until this:=20 checking for glib-config... no configure: error: Could not find glib-config I got perfparse 0.08 running, what new packages do i need now? I got those installed: glib-1.2.10-11 glibc-common-2.3.2-101.4 glib2-2.2.3-1.1 glibc-kernheaders-2.4-8.36 glibc-2.3.2-101.4 glibc-headers-2.3.2-101.4 glibc-devel-2.3.2-101.4 Regards, Philipp _____________________________ Philipp Sand OC-CC-TEC-SYS SYCOR GmbH Heinrich-von-Stephan-Stra=DFe 1-5 D - 37073 G=F6ttingen Telefon +49 (0) 551 / 490 - 0 Telefax +49 (0) 551 / 490 - 2000 phi...@sy... www.sycor.de ------------------------------------------------ ************************************************ sycor plastics - die neue Branchenl=F6sung f=FCr die Kunststoffindustrie www.sycor-plastics.de ************************************************ Diese E-Mail ist vertraulich und kann dar=FCber hinaus pers=F6nliche Info= rmationen beinhalten. Wenn Sie nicht der bestimmungsgem=E4=DFe Empf=E4nge= r sind, l=F6schen Sie bitte die E-Mail und deren Anh=E4nge sofort und ben= achrichtigen Sie uns dar=FCber. Die Firma sycor willigt in keine Vertr=E4= ge oder vertragliche Verpflichtungen ein oder =FCbermittelt rechtsverbind= liche Angebote, die in Form von E-Mail versandt werden, sofern dies nicht= ausdr=FCcklich in schriftlicher Form zwischen den Parteien vereinbart wu= rde. This e-mail is confidential and may contain personal and/or privileged in= formation. If you are not the intended recipient please delete this e-mai= l and all attachments immediately and inform us. The company sycor does n= ot agree with contracts or contract obligations sent by e-mail, neither d= o we transmit legally binding offers by e-mail, unless this is not expres= sly agreed upon between the parties and documented in written form. |
From: Cook, G. <GW...@ma...> - 2004-06-23 19:54:52
|
Jeyri Bautista wrote: > Hi, >=20 > No, I=B4m try to compile Nagios using >=20 > ./configure --prefix=3D/usr/local/nagios > --with-cgiurl=3D/nagios/cgi-bin --with- > htmurl=3D/nagios/ --with-nagios-user=3Dnagios > --with-nagios-grp=3Dnagios --with-fi > le-perfdata --with-template-extinfo >=20 I believe that most of those options are defaults. The only two that are = 'special' are '--with-file-perfdata' and '--with-template-extinfo'. = Someone please correct me if I'm wrong about this. I would suggest that you configure and make (but don't make install!) = with each of these 'special' options as the only one, and see if they = work alone.=20 You'll probably want to 'make clean' and possibly 'make distclean' = before each compile. If both go ok, then make clean/distclean again and = try compiling with both options. If either of them fail, repost the = failure message and see if anyone has a solution. -g >=20 > ----- Original Message ----- > From: "Cook, Garry" <GW...@ma...> > To: "Jeyri Bautista" <jba...@in...>; "Ben Clewett" > <Be...@cl...> Cc: <per...@li...>; > <nag...@li...> > Sent: Wednesday, June 23, 2004 12:10 PM > Subject: RE: [Nagios-users] Re: [Perfparse-users] question >=20 >=20 > per...@li... wrote: >> Yes, I=B4m using the Nagios 1.2. >>=20 >> Thanks, >>=20 >> Jeyri >=20 > It looks like you are trying to compile Nagios with ONLY the > '--with-file-perfdata' option? > There may be other options needed for your Nagios > implementation. Do you > remember the options that you originally used when compiling Nagios? > You should read the PerfParse How-To for more information. >=20 > -g >=20 >=20 >> ----- Original Message ----- >> From: "Ben Clewett" <Be...@cl...> >> To: "Jeyri Bautista" <jba...@in...> >> Cc: <per...@li...>; >> <nag...@li...> >> Sent: Wednesday, June 23, 2004 4:40 AM >> Subject: [Nagios-users] Re: [Perfparse-users] question >>=20 >>=20 >> Jeyri, >>=20 >> I have not seen this problem before. Are you using the latest Nagios >> 1.2? I have forwarded this email to nagios-help where some person >> there will probably be of more help then I am. >>=20 >> Regards, Ben >>=20 >> Jeyri Bautista wrote: >>=20 >>> Hi, I want to install the perfparse program but I read that I need >>> for the nagios run ./configure --with-file-perfdata, because the >>> perfparse don=B4t work with default perfdata. When I execute the >>> ./configure with --with-file-perfdata, all is ok but when I execute >>> make all appear the following error: >>>=20 [snip] >>>=20 >>> Thanks, >>>=20 >>> Jeyri Bautista Garry W. Cook, CCNA Network Infrastructure Manager MACTEC, Inc. - http://www.mactec.com/ 303.308.6228 (Office) - 720.220.1862 (Mobile) |
From: Jeyri B. <jba...@in...> - 2004-06-23 19:23:17
|
Hi, No, I´m try to compile Nagios using ./configure --prefix=/usr/local/nagios --with-cgiurl=/nagios/cgi-bin --with- htmurl=/nagios/ --with-nagios-user=nagios --with-nagios-grp=nagios --with-fi le-perfdata --with-template-extinfo Thanks, Jeyri ----- Original Message ----- From: "Cook, Garry" <GW...@ma...> To: "Jeyri Bautista" <jba...@in...>; "Ben Clewett" <Be...@cl...> Cc: <per...@li...>; <nag...@li...> Sent: Wednesday, June 23, 2004 12:10 PM Subject: RE: [Nagios-users] Re: [Perfparse-users] question per...@li... wrote: > Yes, I´m using the Nagios 1.2. > > Thanks, > > Jeyri It looks like you are trying to compile Nagios with ONLY the '--with-file-perfdata' option? There may be other options needed for your Nagios implementation. Do you remember the options that you originally used when compiling Nagios? You should read the PerfParse How-To for more information. -g > ----- Original Message ----- > From: "Ben Clewett" <Be...@cl...> > To: "Jeyri Bautista" <jba...@in...> > Cc: <per...@li...>; > <nag...@li...> > Sent: Wednesday, June 23, 2004 4:40 AM > Subject: [Nagios-users] Re: [Perfparse-users] question > > > Jeyri, > > I have not seen this problem before. Are you using the latest Nagios > 1.2? I have forwarded this email to nagios-help where some > person there > will probably be of more help then I am. > > Regards, Ben > > Jeyri Bautista wrote: > >> Hi, I want to install the perfparse program but I read that I need >> for the nagios run ./configure --with-file-perfdata, because the >> perfparse don´t work with default perfdata. When I execute the >> ./configure with --with-file-perfdata, all is ok but when I execute >> make all appear the following error: >> >> [root@nagios nagios-1.2]# make all >> cd ./base && make >> make[1]: Cambiando a directorio `/usr/src/nagios-1.2/base' >> gcc -g -O2 -DHAVE_CONFIG_H -DNSCORE nagios.c checks.o config.o >> commands.o flapping.o logging.o notifications.o sehandlers.o utils.o >> sretention.o ../xdata/xrddefault.c ../common/comments.c >> ../xdata/xcddefault.c ../common/objects.c ../xdata/xodtemplate.c >> ../common/statusdata.c ../xdata/xsddefault.c perfdata.o >> ../xdata/xpdfile.c ../common/downtime.c > ../xdata/xdddefault.c -lm -o >> nagios >> perfdata.o: In function `initialize_performance_data': >> /usr/src/nagios-1.2/base/perfdata.c:57: undefined reference to >> `xpddefault_initialize_performance_data' >> perfdata.o: In function `cleanup_performance_data': >> /usr/src/nagios-1.2/base/perfdata.c:73: undefined reference to >> `xpddefault_cleanup_performance_data' >> perfdata.o: In function `update_service_performance_data': >> /usr/src/nagios-1.2/base/perfdata.c:103: undefined reference to >> `xpddefault_update_service_performance_data' >> perfdata.o: In function `update_host_performance_data': >> /usr/src/nagios-1.2/base/perfdata.c:127: undefined reference to >> `xpddefault_update_host_performance_data' >> collect2: ld devolvió el estado de salida 1 >> make[1]: *** [nagios] Error 1 >> make[1]: Saliendo directorio `/usr/src/nagios-1.2/base' >> make: *** [all] Error 2 >> [root@nagios nagios-1.2]# >> Can you help me? >> >> Thanks, >> >> Jeyri Bautista ------------------------------------------------------- This SF.Net email sponsored by Black Hat Briefings & Training. Attend Black Hat Briefings & Training, Las Vegas July 24-29 - digital self defense, top technical experts, no vendor pitches, unmatched networking opportunities. Visit www.blackhat.com _______________________________________________ Nagios-users mailing list Nag...@li... https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null |
From: Cook, G. <GW...@ma...> - 2004-06-23 16:11:29
|
per...@li... wrote: > Yes, I=B4m using the Nagios 1.2. >=20 > Thanks, >=20 > Jeyri It looks like you are trying to compile Nagios with ONLY the = '--with-file-perfdata' option? There may be other options needed for your Nagios implementation. Do you = remember the options that you originally used when compiling Nagios? You should read the PerfParse How-To for more information. -g > ----- Original Message ----- > From: "Ben Clewett" <Be...@cl...> > To: "Jeyri Bautista" <jba...@in...> > Cc: <per...@li...>; > <nag...@li...> > Sent: Wednesday, June 23, 2004 4:40 AM > Subject: [Nagios-users] Re: [Perfparse-users] question >=20 >=20 > Jeyri, >=20 > I have not seen this problem before. Are you using the latest Nagios > 1.2? I have forwarded this email to nagios-help where some > person there > will probably be of more help then I am. >=20 > Regards, Ben >=20 > Jeyri Bautista wrote: >=20 >> Hi, I want to install the perfparse program but I read that I need >> for the nagios run ./configure --with-file-perfdata, because the >> perfparse don=B4t work with default perfdata. When I execute the >> ./configure with --with-file-perfdata, all is ok but when I execute >> make all appear the following error:=20 >>=20 >> [root@nagios nagios-1.2]# make all >> cd ./base && make >> make[1]: Cambiando a directorio `/usr/src/nagios-1.2/base' >> gcc -g -O2 -DHAVE_CONFIG_H -DNSCORE nagios.c checks.o config.o >> commands.o flapping.o logging.o notifications.o sehandlers.o utils.o >> sretention.o ../xdata/xrddefault.c ../common/comments.c >> ../xdata/xcddefault.c ../common/objects.c ../xdata/xodtemplate.c >> ../common/statusdata.c ../xdata/xsddefault.c perfdata.o >> ../xdata/xpdfile.c ../common/downtime.c > ../xdata/xdddefault.c -lm -o >> nagios >> perfdata.o: In function `initialize_performance_data': >> /usr/src/nagios-1.2/base/perfdata.c:57: undefined reference to >> `xpddefault_initialize_performance_data' >> perfdata.o: In function `cleanup_performance_data': >> /usr/src/nagios-1.2/base/perfdata.c:73: undefined reference to >> `xpddefault_cleanup_performance_data' >> perfdata.o: In function `update_service_performance_data': >> /usr/src/nagios-1.2/base/perfdata.c:103: undefined reference to >> `xpddefault_update_service_performance_data' >> perfdata.o: In function `update_host_performance_data': >> /usr/src/nagios-1.2/base/perfdata.c:127: undefined reference to >> `xpddefault_update_host_performance_data' >> collect2: ld devolvi=F3 el estado de salida 1 >> make[1]: *** [nagios] Error 1 >> make[1]: Saliendo directorio `/usr/src/nagios-1.2/base' >> make: *** [all] Error 2 >> [root@nagios nagios-1.2]# >> Can you help me? >>=20 >> Thanks, >>=20 >> Jeyri Bautista |
From: Jeyri B. <jba...@in...> - 2004-06-23 12:32:34
|
Yes, I´m using the Nagios 1.2. Thanks, Jeyri ----- Original Message ----- From: "Ben Clewett" <Be...@cl...> To: "Jeyri Bautista" <jba...@in...> Cc: <per...@li...>; <nag...@li...> Sent: Wednesday, June 23, 2004 4:40 AM Subject: [Nagios-users] Re: [Perfparse-users] question Jeyri, I have not seen this problem before. Are you using the latest Nagios 1.2? I have forwarded this email to nagios-help where some person there will probably be of more help then I am. Regards, Ben Jeyri Bautista wrote: > Hi, I want to install the perfparse program but I read that I need for > the nagios run ./configure --with-file-perfdata, because the perfparse > don´t work with default perfdata. When I execute the ./configure with > --with-file-perfdata, all is ok but when I execute make all appear the > following error: > > [root@nagios nagios-1.2]# make all > cd ./base && make > make[1]: Cambiando a directorio `/usr/src/nagios-1.2/base' > gcc -g -O2 -DHAVE_CONFIG_H -DNSCORE nagios.c checks.o config.o > commands.o flapping.o logging.o notifications.o sehandlers.o utils.o > sretention.o ../xdata/xrddefault.c ../common/comments.c > ../xdata/xcddefault.c ../common/objects.c ../xdata/xodtemplate.c > ../common/statusdata.c ../xdata/xsddefault.c perfdata.o > ../xdata/xpdfile.c ../common/downtime.c ../xdata/xdddefault.c -lm -o > nagios > perfdata.o: In function `initialize_performance_data': > /usr/src/nagios-1.2/base/perfdata.c:57: undefined reference to > `xpddefault_initialize_performance_data' > perfdata.o: In function `cleanup_performance_data': > /usr/src/nagios-1.2/base/perfdata.c:73: undefined reference to > `xpddefault_cleanup_performance_data' > perfdata.o: In function `update_service_performance_data': > /usr/src/nagios-1.2/base/perfdata.c:103: undefined reference to > `xpddefault_update_service_performance_data' > perfdata.o: In function `update_host_performance_data': > /usr/src/nagios-1.2/base/perfdata.c:127: undefined reference to > `xpddefault_update_host_performance_data' > collect2: ld devolvió el estado de salida 1 > make[1]: *** [nagios] Error 1 > make[1]: Saliendo directorio `/usr/src/nagios-1.2/base' > make: *** [all] Error 2 > [root@nagios nagios-1.2]# > Can you help me? > > Thanks, > > Jeyri Bautista > ------------------------------------------------------- This SF.Net email sponsored by Black Hat Briefings & Training. Attend Black Hat Briefings & Training, Las Vegas July 24-29 - digital self defense, top technical experts, no vendor pitches, unmatched networking opportunities. Visit www.blackhat.com _______________________________________________ Nagios-users mailing list Nag...@li... https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null |
From: Ben C. <Be...@cl...> - 2004-06-23 08:38:35
|
Jeyri, I have not seen this problem before. Are you using the latest Nagios=20 1.2? I have forwarded this email to nagios-help where some person there=20 will probably be of more help then I am. Regards, Ben Jeyri Bautista wrote: > Hi, I want to install the perfparse program but I read that I need for=20 > the nagios run ./configure --with-file-perfdata, because the perfparse=20 > don=B4t work with default perfdata. When I execute the ./configure with= =20 > --with-file-perfdata, all is ok but when I execute make all appear the=20 > following error: > =20 > [root@nagios nagios-1.2]# make all > cd ./base && make > make[1]: Cambiando a directorio `/usr/src/nagios-1.2/base' > gcc -g -O2 -DHAVE_CONFIG_H -DNSCORE nagios.c checks.o config.o=20 > commands.o flapping.o logging.o notifications.o sehandlers.o utils.o=20 > sretention.o ../xdata/xrddefault.c ../common/comments.c=20 > ../xdata/xcddefault.c ../common/objects.c ../xdata/xodtemplate.c=20 > ../common/statusdata.c ../xdata/xsddefault.c perfdata.o=20 > ../xdata/xpdfile.c ../common/downtime.c ../xdata/xdddefault.c -lm -o= =20 > nagios > perfdata.o: In function `initialize_performance_data': > /usr/src/nagios-1.2/base/perfdata.c:57: undefined reference to=20 > `xpddefault_initialize_performance_data' > perfdata.o: In function `cleanup_performance_data': > /usr/src/nagios-1.2/base/perfdata.c:73: undefined reference to=20 > `xpddefault_cleanup_performance_data' > perfdata.o: In function `update_service_performance_data': > /usr/src/nagios-1.2/base/perfdata.c:103: undefined reference to=20 > `xpddefault_update_service_performance_data' > perfdata.o: In function `update_host_performance_data': > /usr/src/nagios-1.2/base/perfdata.c:127: undefined reference to=20 > `xpddefault_update_host_performance_data' > collect2: ld devolvi=F3 el estado de salida 1 > make[1]: *** [nagios] Error 1 > make[1]: Saliendo directorio `/usr/src/nagios-1.2/base' > make: *** [all] Error 2 > [root@nagios nagios-1.2]# > Can you help me? > =20 > Thanks, > =20 > Jeyri Bautista > =20 |