You can subscribe to this list here.
2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(19) |
Dec
(72) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2005 |
Jan
(35) |
Feb
(36) |
Mar
|
Apr
|
May
(3) |
Jun
(2) |
Jul
|
Aug
(4) |
Sep
|
Oct
(1) |
Nov
|
Dec
|
2006 |
Jan
(2) |
Feb
|
Mar
(2) |
Apr
(11) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
From: Ben C. <ben...@ww...> - 2005-02-09 08:37:59
|
Alex, You have some good ideas and I can see you are keen to get going. You suggestion about flags in the configure sounds like the correct option. Before you do too much work, I am keen to have some feedback from other users. As I said, the current method you use will break translation and make re-translation harder. Eg, to translate: "Show all Hosts below" is easy. To translate three isolated strings: " below", "Hosts" & "Show all " may result in a bad translation. To break the current translations requires a very good reason, as this is the work of many people. :) If you can wait a short while for the opinion of other users, this would be adventagious. But your work is very important as you will force the development of PerfParse into a more generic tool, which can be applied to more than just Nagios data. So your patch and other work in time, will be extremely useful and definitely result in a better product. Regards, Ben. On Tue, 8 Feb 2005 23:02:08 +0100, Alex Peeters wrote > Hi, > > I like a non-destructive method. > > The example: > #ifdef USE_NAGIOS > _("Host"); > #elsif USE_ASNMTAP > _("Plugin"); > #endif > > is al lot of work. > > The idea from Yves, by using constants definitions into libpp_common.h > > #if ENABLE_ASNMTAP > #define APPLICATION_TITLE (_("ASNMTAP")) > #define HOST_TITLE (_("Plugin")) > #define SERVICE_TITLE (_("Unique Key")) > #define RAW_REPORT_TITLE (_("Raw ASNMTAP Plugin Report")) > #define MARK_DELETION_TITLE (_("Mark Plugin for complete deletion.")) > #define DELETION_POLICIES_TITLE (_("Deletion Policies for Plugins")) #endif > > #if ENABLE_NAGIOS > #define APPLICATION_TITLE (_("Nagios")) > #define HOST_TITLE (_("Host")) > #define SERVICE_TITLE (_("Title")) > #define RAW_REPORT_TITLE (_("Raw Nagios Host Report")) > #define MARK_DELETION_TITLE (_("Mark Host for complete deletion.")) > #define DELETION_POLICIES_TITLE (_("Deletion Policies for Hosts")) > #endif > > is less destructive. > > > I very much want to use your system. > > Possibly you can let us know a little more about it? > The data coming from the plugins is Nagios compatible. I use Nagios for > for monitoring system and network compontents. But from the moment a > test takes more then 10 sec, Nagios can't be used anymore? > > ASNMTAP can run Nagios or ASNMTAP Nagios compatible plugins. > > These plugins that simulate a users for a whole application. > > That can be cactus, ftp servers (with up and downloading from files), > setting up a ras connection to test it, testing a phone central, > testing the sending and receiving from emails, receiving from xml emails > with the status from test done by other processes, to report > problems, ... > > > Although some user may want to use both systems :) > > I also use both Nagios and ASNMTAP onto the same server. I dit > compile it 2 times. One time normally, and one time with > > --prefix=/opt/asnmtap/perfparse --with-imagedir=/opt/asnmtap/htmlroot/img/ > --with-cgidir=/opt/asnmtap/htmlroot/cgi-bin > --with-http_image_path=/asnmtap/img > > Is it possible to have the final patch into your next release, > so that I don't need to change every time there is a new release? > > May i make also a version of the 'Perfparse addon for Nagios' > picture, 'Perfparse addon for ASNMTAP'? > > Now I compile with: > > ./configure --prefix=/opt/asnmtap/perfparse > --with-imagedir=/opt/asnmtap/htmlroot/img/ > --with-cgidir=/opt/asnmtap/htmlroot/cgi-bin > --with-http_image_path=/asnmtap/img > to compile perfparse. > > Is it possible to have one parameters: > > ./configure--enable-asnmtap > > but where for the nagios users because of the > --enable-nagios (default) parameters nothings change!!! > > so that it automatically compiles with the next default parameters: > > --prefix=/opt/asnmtap/perfparse --with-imagedir=/opt/asnmtap/htmlroot/img/ > --with-cgidir=/opt/asnmtap/htmlroot/cgi-bin > --with-http_image_path=/asnmtap/img > > and where then in libpp_common.h > > #if ENABLE_ASNMTAP > #define APPLICATION_TITLE (_("ASNMTAP")) > #define HOST_TITLE (_("Plugin")) > #define SERVICE_TITLE (_("Unique Key")) > #define RAW_REPORT_TITLE (_("Raw ASNMTAP Plugin Report")) > #define MARK_DELETION_TITLE (_("Mark Plugin for complete deletion.")) > #define DELETION_POLICIES_TITLE (_("Deletion Policies for Plugins")) #endif > > #if ENABLE_NAGIOS > #define APPLICATION_TITLE (_("Nagios")) > #define HOST_TITLE (_("Host")) > #define SERVICE_TITLE (_("Title")) > #define RAW_REPORT_TITLE (_("Raw Nagios Host Report")) > #define MARK_DELETION_TITLE (_("Mark Host for complete deletion.")) > #define DELETION_POLICIES_TITLE (_("Deletion Policies for Hosts")) #endif > > and where then the 'Perfparse addon for ASNMTAP' pictures are copied > during install instead of the 'Perfparse addon for Nagios' pictures > > -- Alex Peeters > > -----Original Message----- > From: Ben Clewett [mailto:ben...@ww...] > Sent: dinsdag 8 februari 2005 22:34 > To: ale...@ci...; per...@li... > Cc: ale...@sm... > Subject: Re: Perfparse 2005 02 09, the one hase the correct patch > > Alex, > > This looks like an interesting piece of work. > > I think now we need to discuss with the other members where we take this. > > We can continue with this method but break the current translation. > Or do something else. For this there are lots of other people who > need to comment :) > > I very much want to use your system. Possibly you can let us know a > little more about it? > > We have to work out the best way of making PerfParse generic to any data > gathering system. If breaking the translation is the best way for > the greater good, then so be it. Otherwise, we must be open to > other non-destructive methods. > > It occurs to me that this may work well: > > #ifdef USE_NAGIOS > _("Host"); > #elsif USE_DARREN_KEMP_SYSTEM > _("Plugin"); > #endif > > Although some user may want to use both systems :) > > I am sorry I have only just thought if this way. > > But as I said, I think other members need to comment now. > > I have moved this discussion to per...@li... > where this discussion is more appropriate. > > Ben. > > On Tue, 8 Feb 2005 19:43:51 +0100, Alex Peeters wrote > > Hi Ben, > > > > I have attached a file with the patch and modified file into it. > > > > The patch have been created with: > > > > diff -u perfparse-0.105.5-asnmtap/libpp_common/ > > perfparse-0.105.5/libpp_common/ > perfparse -patch-commom > > > > diff -u perfparse-0.105.5-asnmtap/cgi/ perfparse-0.105.5/cgi > perfparse > > -patch-cgi > > > > -- Alex > > > > > > > > -- > > No virus found in this outgoing message. > > Checked by AVG Anti-Virus. > > Version: 7.0.300 / Virus Database: 265.8.6 - Release Date: 7/02/2005 > > -- > PerfParse Project (http://www.perfparse.org) > > -- > No virus found in this incoming message. > Checked by AVG Anti-Virus. > Version: 7.0.300 / Virus Database: 265.8.6 - Release Date: 7/02/2005 > > > -- > No virus found in this outgoing message. > Checked by AVG Anti-Virus. > Version: 7.0.300 / Virus Database: 265.8.6 - Release Date: 7/02/2005 -- PerfParse Project (http://www.perfparse.org) |
From: Alex P. <ale...@ci...> - 2005-02-08 22:02:26
|
Hi, I like a non-destructive method. The example: #ifdef USE_NAGIOS _("Host"); #elsif USE_ASNMTAP _("Plugin"); #endif is al lot of work. The idea from Yves, by using constants definitions into libpp_common.h #if ENABLE_ASNMTAP #define APPLICATION_TITLE (_("ASNMTAP")) #define HOST_TITLE (_("Plugin")) #define SERVICE_TITLE (_("Unique Key")) #define RAW_REPORT_TITLE (_("Raw ASNMTAP Plugin Report")) #define MARK_DELETION_TITLE (_("Mark Plugin for complete = deletion.")) #define DELETION_POLICIES_TITLE (_("Deletion Policies for Plugins")) = #endif #if ENABLE_NAGIOS #define APPLICATION_TITLE (_("Nagios")) #define HOST_TITLE (_("Host")) #define SERVICE_TITLE (_("Title")) #define RAW_REPORT_TITLE (_("Raw Nagios Host Report")) #define MARK_DELETION_TITLE (_("Mark Host for complete deletion.")) #define DELETION_POLICIES_TITLE (_("Deletion Policies for Hosts"))=20 #endif is less destructive. > I very much want to use your system. =20 > Possibly you can let us know a little more about it? =20 The data coming from the plugins is Nagios compatible. I use Nagios for for monitoring system and network compontents. But from the moment a = test takes more then 10 sec, Nagios can't be used anymore? ASNMTAP can run Nagios or ASNMTAP Nagios compatible plugins. These plugins that simulate a users for a whole application. That can be cactus, ftp servers (with up and downloading from files), setting up a ras connection to test it, testing a phone central, testing the sending and receiving from emails, receiving from xml emails with the status from test done by other processes, to report problems, = ... > Although some user may want to use both systems :) I also use both Nagios and ASNMTAP onto the same server. I dit compile = it 2 times. One time normally, and one time with=20 --prefix=3D/opt/asnmtap/perfparse = --with-imagedir=3D/opt/asnmtap/htmlroot/img/ --with-cgidir=3D/opt/asnmtap/htmlroot/cgi-bin --with-http_image_path=3D/asnmtap/img Is it possible to have the final patch into your next release,=20 so that I don't need to change every time there is a new release? May i make also a version of the 'Perfparse addon for Nagios' picture, 'Perfparse addon for ASNMTAP'? Now I compile with: ./configure --prefix=3D/opt/asnmtap/perfparse --with-imagedir=3D/opt/asnmtap/htmlroot/img/ --with-cgidir=3D/opt/asnmtap/htmlroot/cgi-bin --with-http_image_path=3D/asnmtap/img to compile perfparse. Is it possible to have one parameters: ./configure--enable-asnmtap =20 but where for the nagios users because of the=20 --enable-nagios (default) parameters nothings change!!! so that it automatically compiles with the next default parameters: --prefix=3D/opt/asnmtap/perfparse = --with-imagedir=3D/opt/asnmtap/htmlroot/img/ --with-cgidir=3D/opt/asnmtap/htmlroot/cgi-bin --with-http_image_path=3D/asnmtap/img and where then in libpp_common.h #if ENABLE_ASNMTAP #define APPLICATION_TITLE (_("ASNMTAP")) #define HOST_TITLE (_("Plugin")) #define SERVICE_TITLE (_("Unique Key")) #define RAW_REPORT_TITLE (_("Raw ASNMTAP Plugin Report")) #define MARK_DELETION_TITLE (_("Mark Plugin for complete = deletion.")) #define DELETION_POLICIES_TITLE (_("Deletion Policies for Plugins")) = #endif #if ENABLE_NAGIOS #define APPLICATION_TITLE (_("Nagios")) #define HOST_TITLE (_("Host")) #define SERVICE_TITLE (_("Title")) #define RAW_REPORT_TITLE (_("Raw Nagios Host Report")) #define MARK_DELETION_TITLE (_("Mark Host for complete deletion.")) #define DELETION_POLICIES_TITLE (_("Deletion Policies for Hosts")) = #endif and where then the 'Perfparse addon for ASNMTAP' pictures are copied = during install instead of the 'Perfparse addon for Nagios' pictures -- Alex Peeters -----Original Message----- From: Ben Clewett [mailto:ben...@ww...]=20 Sent: dinsdag 8 februari 2005 22:34 To: ale...@ci...; per...@li... Cc: ale...@sm... Subject: Re: Perfparse 2005 02 09, the one hase the correct patch Alex, This looks like an interesting piece of work. I think now we need to discuss with the other members where we take = this. We can continue with this method but break the current translation. Or = do something else. For this there are lots of other people who need to = comment :) I very much want to use your system. Possibly you can let us know a = little more about it? =20 We have to work out the best way of making PerfParse generic to any data gathering system. If breaking the translation is the best way for the greater good, then so be it. Otherwise, we must be open to other = non-destructive methods. It occurs to me that this may work well: #ifdef USE_NAGIOS _("Host"); #elsif USE_DARREN_KEMP_SYSTEM _("Plugin"); #endif Although some user may want to use both systems :) I am sorry I have only just thought if this way. But as I said, I think other members need to comment now. I have moved this discussion to per...@li... where = this discussion is more appropriate. Ben. On Tue, 8 Feb 2005 19:43:51 +0100, Alex Peeters wrote > Hi Ben, >=20 > I have attached a file with the patch and modified file into it. >=20 > The patch have been created with: >=20 > diff -u perfparse-0.105.5-asnmtap/libpp_common/ > perfparse-0.105.5/libpp_common/ > perfparse -patch-commom >=20 > diff -u perfparse-0.105.5-asnmtap/cgi/ perfparse-0.105.5/cgi > = perfparse > -patch-cgi >=20 > -- Alex >=20 > =20 >=20 > --=20 > No virus found in this outgoing message. > Checked by AVG Anti-Virus. > Version: 7.0.300 / Virus Database: 265.8.6 - Release Date: 7/02/2005 -- PerfParse Project (http://www.perfparse.org) --=20 No virus found in this incoming message. Checked by AVG Anti-Virus. Version: 7.0.300 / Virus Database: 265.8.6 - Release Date: 7/02/2005 =20 --=20 No virus found in this outgoing message. Checked by AVG Anti-Virus. Version: 7.0.300 / Virus Database: 265.8.6 - Release Date: 7/02/2005 =20 |
From: Ben C. <ben...@ww...> - 2005-02-08 21:34:35
|
Alex, This looks like an interesting piece of work. I think now we need to discuss with the other members where we take this. We can continue with this method but break the current translation. Or do something else. For this there are lots of other people who need to comment :) I very much want to use your system. Possibly you can let us know a little more about it? We have to work out the best way of making PerfParse generic to any data gathering system. If breaking the translation is the best way for the greater good, then so be it. Otherwise, we must be open to other non-destructive methods. It occurs to me that this may work well: #ifdef USE_NAGIOS _("Host"); #elsif USE_DARREN_KEMP_SYSTEM _("Plugin"); #endif Although some user may want to use both systems :) I am sorry I have only just thought if this way. But as I said, I think other members need to comment now. I have moved this discussion to per...@li... where this discussion is more appropriate. Ben. On Tue, 8 Feb 2005 19:43:51 +0100, Alex Peeters wrote > Hi Ben, > > I have attached a file with the patch and modified file into it. > > The patch have been created with: > > diff -u perfparse-0.105.5-asnmtap/libpp_common/ > perfparse-0.105.5/libpp_common/ > perfparse -patch-commom > > diff -u perfparse-0.105.5-asnmtap/cgi/ perfparse-0.105.5/cgi > perfparse > -patch-cgi > > -- Alex > > > > -- > No virus found in this outgoing message. > Checked by AVG Anti-Virus. > Version: 7.0.300 / Virus Database: 265.8.6 - Release Date: 7/02/2005 -- PerfParse Project (http://www.perfparse.org) |
From: Ben C. <bcl...@pe...> - 2005-02-03 09:17:27
|
Dear contributers, In my rush to get everything out, several bugs were left in the new code for displaying Tim's raw summary data. I've released 0.105.4 with these fixed. Regards, Ben -- Ben Clewett bcl...@pe... PerfParse http://www.perfparse.org PP FAQ http://wiki.perfparse.org/tiki-list_faqs.php |
From: Ben C. <bcl...@pe...> - 2005-02-02 15:40:47
|
Thanks gues for your help, and exposure of three sets of bugs. New version will be out soon. Good to get a clean release out. I think there are still two bugs somewhere: - The exit problem from perfparsed - The missing variable from libpp_postgresql (??) I've thrown in a report on Tim's excellent summary data as well, (MySQL only), which makes a great addition to the product. Ben Ben Clewett wrote: > Flo, > > What database support did you request? > > To fix if not using MySQL: > > Edit scripts/Makefile.am > > Change: > > if USE_DB_MYSQL > GO_PERFPARSE_SH = perfparse.sh.example > endif > > To: > > GO_PERFPARSE_SH = perfparse.sh.example > > (This script is database independent anyway...) > > Thanks for trying to get a release out. I need to work on other bugs a > little more first. For which I need to get aclocal working first :) > > Ben. > > > > > Flo Gleixner wrote: > >> >> >> As i have a full featured internet access (including a firewall admin >> access), i tried to create the package: >> patch -p 1 < ../pp-0.105.2.patch.ym1 >> libtoolize -f -c >> aclocal -I m4 >> autoconf >> autoheader >> ./configure >> make distcheck >> >> but had no success: >> scripts/Makefile.am:12: variable `GO_PERFPARSE_SH' not defined >> make: *** [Makefile.in] Error 1 >> >> I also tried with the configure options in >> http://wiki.perfparse.org/tiki-view_faq.php?faqId=1 >> but had no success. >> >> If someone can give me detailed instructions, i will do it (I'm not >> familiar with auto-tools). >> >> Flo >> >> On Wed, 2 Feb 2005, Yves wrote: >> >>>> As this would be really good training for your gues, I wonder if you >>>> wanted to give them a go at getting a release out? >>> >>> >>> >>> Good thing that I was at home, otherwise I could not have been able >>> to upload and I >>> would not have tried. >>> Good thing that I have postgresql and not mysql on that computer : I >>> found another bug >>> (see ChangeLog and configure.ac) >>> Bad thing : this is MacOSX and I did not manage to run "make" or >>> "make distcheck". >>> >>> Please use my patch (attached), that includes the change to version >>> 0.105.3. >>> Then: >>> >>> libtoolize -f -c >>> aclocal -I m4 >>> autoconf >>> autoheader >>> automake -a -c >>> configure <your options here> >>> make distcheck DISTCHECK_CONFIGURE_FLAGS="<your options here>" >>> Then upload the resulting package as Ben writes it below. >>> >>> I will probably not answer the mail until tomorrow. Don't expect for >>> soon answers now. >>> If some want to meet me, I should spend a lot of time near Linux >>> Magazine at the >>> SolutionsLinux2005 meeting at La Defense, Paris this afternoon. >>> >>> Yves >>> >>>> >>>> If you agree, I need: >>>> - The patch attached. >>>> - Version changed to 0.105.3 >>>> - aclocal, autoconf etc >>>> - make distcheck >>>> - ftp to upload.sf.net as anonymous and placed in directory 'incoming'. >>>> >>>> I can take it from there :) >>>> >>>> If not, I'll wrangle something together... >>>> >>>> Thanks! >>>> >>>> Ben >>>> >>>> >>>> >>>> >>>> -- >>>> Ben Clewett bcl...@pe... >>>> PerfParse http://www.perfparse.org >>>> PP FAQ http://wiki.perfparse.org/tiki-list_faqs.php >>>> >>> >>> >>> -- >>> - Homepage - http://ymettier.free.fr - http://www.logicacmg.com - >>> - GPG key - http://ymettier.free.fr/gpg.txt - >>> - Maitretarot - http://www.nongnu.org/maitretarot/ - >>> - Perfparse - http://perfparse.sf.net/ - >> >> >> >> >> ------------------------------------------------------- >> This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting >> Tool for open source databases. Create drag-&-drop reports. Save time >> by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc. >> Download a FREE copy at http://www.intelliview.com/go/osdn_nl >> _______________________________________________ >> Perfparse-devel-int mailing list >> Per...@li... >> https://lists.sourceforge.net/lists/listinfo/perfparse-devel-int >> > > > > ------------------------------------------------------- > This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting > Tool for open source databases. Create drag-&-drop reports. Save time > by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc. > Download a FREE copy at http://www.intelliview.com/go/osdn_nl > _______________________________________________ > Perfparse-devel-int mailing list > Per...@li... > https://lists.sourceforge.net/lists/listinfo/perfparse-devel-int > -- Ben Clewett bcl...@pe... PerfParse http://www.perfparse.org PP FAQ http://wiki.perfparse.org/tiki-list_faqs.php |
From: Ben C. <Ben...@ro...> - 2005-02-02 14:02:34
|
Flo, What database support did you request? To fix if not using MySQL: Edit scripts/Makefile.am Change: if USE_DB_MYSQL GO_PERFPARSE_SH = perfparse.sh.example endif To: GO_PERFPARSE_SH = perfparse.sh.example (This script is database independent anyway...) Thanks for trying to get a release out. I need to work on other bugs a little more first. For which I need to get aclocal working first :) Ben. Flo Gleixner wrote: > > > As i have a full featured internet access (including a firewall admin > access), i tried to create the package: > patch -p 1 < ../pp-0.105.2.patch.ym1 > libtoolize -f -c > aclocal -I m4 > autoconf > autoheader > ./configure > make distcheck > > but had no success: > scripts/Makefile.am:12: variable `GO_PERFPARSE_SH' not defined > make: *** [Makefile.in] Error 1 > > I also tried with the configure options in > http://wiki.perfparse.org/tiki-view_faq.php?faqId=1 > but had no success. > > If someone can give me detailed instructions, i will do it (I'm not > familiar with auto-tools). > > Flo > > On Wed, 2 Feb 2005, Yves wrote: > >>> As this would be really good training for your gues, I wonder if you >>> wanted to give them a go at getting a release out? >> >> >> Good thing that I was at home, otherwise I could not have been able to >> upload and I >> would not have tried. >> Good thing that I have postgresql and not mysql on that computer : I >> found another bug >> (see ChangeLog and configure.ac) >> Bad thing : this is MacOSX and I did not manage to run "make" or "make >> distcheck". >> >> Please use my patch (attached), that includes the change to version >> 0.105.3. >> Then: >> >> libtoolize -f -c >> aclocal -I m4 >> autoconf >> autoheader >> automake -a -c >> configure <your options here> >> make distcheck DISTCHECK_CONFIGURE_FLAGS="<your options here>" >> Then upload the resulting package as Ben writes it below. >> >> I will probably not answer the mail until tomorrow. Don't expect for >> soon answers now. >> If some want to meet me, I should spend a lot of time near Linux >> Magazine at the >> SolutionsLinux2005 meeting at La Defense, Paris this afternoon. >> >> Yves >> >>> >>> If you agree, I need: >>> - The patch attached. >>> - Version changed to 0.105.3 >>> - aclocal, autoconf etc >>> - make distcheck >>> - ftp to upload.sf.net as anonymous and placed in directory 'incoming'. >>> >>> I can take it from there :) >>> >>> If not, I'll wrangle something together... >>> >>> Thanks! >>> >>> Ben >>> >>> >>> >>> >>> -- >>> Ben Clewett bcl...@pe... >>> PerfParse http://www.perfparse.org >>> PP FAQ http://wiki.perfparse.org/tiki-list_faqs.php >>> >> >> >> -- >> - Homepage - http://ymettier.free.fr - http://www.logicacmg.com - >> - GPG key - http://ymettier.free.fr/gpg.txt - >> - Maitretarot - http://www.nongnu.org/maitretarot/ - >> - Perfparse - http://perfparse.sf.net/ - > > > > ------------------------------------------------------- > This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting > Tool for open source databases. Create drag-&-drop reports. Save time > by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc. > Download a FREE copy at http://www.intelliview.com/go/osdn_nl > _______________________________________________ > Perfparse-devel-int mailing list > Per...@li... > https://lists.sourceforge.net/lists/listinfo/perfparse-devel-int > |
From: Ben C. <bcl...@pe...> - 2005-02-02 13:51:05
|
Flo, Yves, I found another buffer-overflow bug in the raw-report, not a good day for bugs. I've managed to find a machine, but no compile. My error is: $ aclocal -I m4 aclocal:configure.ac:92: warning: macro `AM_PATH_GLIB_2_0' not found in library With automake 1.9.4 and libtoolize 1.5.10. (Very latest versions.) Failure after this. Yves, I don't seem to have any 'aclocal -I' include directories for aclocal which include this definition. Flo, I'll let you know if I find your problem whilst trying to find a solution to this problem. :) Ben Flo Gleixner wrote: > > > As i have a full featured internet access (including a firewall admin > access), i tried to create the package: > patch -p 1 < ../pp-0.105.2.patch.ym1 > libtoolize -f -c > aclocal -I m4 > autoconf > autoheader > ./configure > make distcheck > > but had no success: > scripts/Makefile.am:12: variable `GO_PERFPARSE_SH' not defined > make: *** [Makefile.in] Error 1 > > I also tried with the configure options in > http://wiki.perfparse.org/tiki-view_faq.php?faqId=1 > but had no success. > > If someone can give me detailed instructions, i will do it (I'm not > familiar with auto-tools). > > Flo > > On Wed, 2 Feb 2005, Yves wrote: > >>> As this would be really good training for your gues, I wonder if you >>> wanted to give them a go at getting a release out? >> >> >> Good thing that I was at home, otherwise I could not have been able to >> upload and I >> would not have tried. >> Good thing that I have postgresql and not mysql on that computer : I >> found another bug >> (see ChangeLog and configure.ac) >> Bad thing : this is MacOSX and I did not manage to run "make" or "make >> distcheck". >> >> Please use my patch (attached), that includes the change to version >> 0.105.3. >> Then: >> >> libtoolize -f -c >> aclocal -I m4 >> autoconf >> autoheader >> automake -a -c >> configure <your options here> >> make distcheck DISTCHECK_CONFIGURE_FLAGS="<your options here>" >> Then upload the resulting package as Ben writes it below. >> >> I will probably not answer the mail until tomorrow. Don't expect for >> soon answers now. >> If some want to meet me, I should spend a lot of time near Linux >> Magazine at the >> SolutionsLinux2005 meeting at La Defense, Paris this afternoon. >> >> Yves >> >>> >>> If you agree, I need: >>> - The patch attached. >>> - Version changed to 0.105.3 >>> - aclocal, autoconf etc >>> - make distcheck >>> - ftp to upload.sf.net as anonymous and placed in directory 'incoming'. >>> >>> I can take it from there :) >>> >>> If not, I'll wrangle something together... >>> >>> Thanks! >>> >>> Ben >>> >>> >>> >>> >>> -- >>> Ben Clewett bcl...@pe... >>> PerfParse http://www.perfparse.org >>> PP FAQ http://wiki.perfparse.org/tiki-list_faqs.php >>> >> >> >> -- >> - Homepage - http://ymettier.free.fr - http://www.logicacmg.com - >> - GPG key - http://ymettier.free.fr/gpg.txt - >> - Maitretarot - http://www.nongnu.org/maitretarot/ - >> - Perfparse - http://perfparse.sf.net/ - > > > > ------------------------------------------------------- > This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting > Tool for open source databases. Create drag-&-drop reports. Save time > by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc. > Download a FREE copy at http://www.intelliview.com/go/osdn_nl > _______________________________________________ > Perfparse-devel-int mailing list > Per...@li... > https://lists.sourceforge.net/lists/listinfo/perfparse-devel-int > -- Ben Clewett bcl...@pe... PerfParse http://www.perfparse.org PP FAQ http://wiki.perfparse.org/tiki-list_faqs.php |
From: Flo G. <fl...@bi...> - 2005-02-02 13:13:04
|
As i have a full featured internet access (including a firewall admin access), i tried to create the package: patch -p 1 < ../pp-0.105.2.patch.ym1 libtoolize -f -c aclocal -I m4 autoconf autoheader ./configure make distcheck but had no success: scripts/Makefile.am:12: variable `GO_PERFPARSE_SH' not defined make: *** [Makefile.in] Error 1 I also tried with the configure options in http://wiki.perfparse.org/tiki-view_faq.php?faqId=1 but had no success. If someone can give me detailed instructions, i will do it (I'm not familiar with auto-tools). Flo On Wed, 2 Feb 2005, Yves wrote: >> As this would be really good training for your gues, I wonder if you >> wanted to give them a go at getting a release out? > > Good thing that I was at home, otherwise I could not have been able to upload and I > would not have tried. > Good thing that I have postgresql and not mysql on that computer : I found another bug > (see ChangeLog and configure.ac) > Bad thing : this is MacOSX and I did not manage to run "make" or "make distcheck". > > Please use my patch (attached), that includes the change to version 0.105.3. > Then: > > libtoolize -f -c > aclocal -I m4 > autoconf > autoheader > automake -a -c > configure <your options here> > make distcheck DISTCHECK_CONFIGURE_FLAGS="<your options here>" > Then upload the resulting package as Ben writes it below. > > I will probably not answer the mail until tomorrow. Don't expect for soon answers now. > If some want to meet me, I should spend a lot of time near Linux Magazine at the > SolutionsLinux2005 meeting at La Defense, Paris this afternoon. > > Yves >> >> If you agree, I need: >> - The patch attached. >> - Version changed to 0.105.3 >> - aclocal, autoconf etc >> - make distcheck >> - ftp to upload.sf.net as anonymous and placed in directory 'incoming'. >> >> I can take it from there :) >> >> If not, I'll wrangle something together... >> >> Thanks! >> >> Ben >> >> >> >> >> -- >> Ben Clewett bcl...@pe... >> PerfParse http://www.perfparse.org >> PP FAQ http://wiki.perfparse.org/tiki-list_faqs.php >> > > > -- > - Homepage - http://ymettier.free.fr - http://www.logicacmg.com - > - GPG key - http://ymettier.free.fr/gpg.txt - > - Maitretarot - http://www.nongnu.org/maitretarot/ - > - Perfparse - http://perfparse.sf.net/ - |
From: Yves <yme...@pe...> - 2005-02-02 10:47:59
|
> As this would be really good training for your gues, I wonder if you > wanted to give them a go at getting a release out? Good thing that I was at home, otherwise I could not have been able to up= load and I would not have tried. Good thing that I have postgresql and not mysql on that computer : I foun= d another bug (see ChangeLog and configure.ac) Bad thing : this is MacOSX and I did not manage to run "make" or "make di= stcheck". Please use my patch (attached), that includes the change to version 0.105= .3. Then: libtoolize -f -c aclocal -I m4 autoconf autoheader automake -a -c configure <your options here> make distcheck DISTCHECK_CONFIGURE_FLAGS=3D"<your options here>" Then upload the resulting package as Ben writes it below. I will probably not answer the mail until tomorrow. Don't expect for soon= answers now. If some want to meet me, I should spend a lot of time near Linux Magazine= at the SolutionsLinux2005 meeting at La Defense, Paris this afternoon. Yves > > If you agree, I need: > - The patch attached. > - Version changed to 0.105.3 > - aclocal, autoconf etc > - make distcheck > - ftp to upload.sf.net as anonymous and placed in directory 'incoming'. > > I can take it from there :) > > If not, I'll wrangle something together... > > Thanks! > > Ben > > > > > -- > Ben Clewett bcl...@pe... > PerfParse http://www.perfparse.org > PP FAQ http://wiki.perfparse.org/tiki-list_faqs.php > --=20 - Homepage - http://ymettier.free.fr - http://www.logicacmg.com - - GPG key - http://ymettier.free.fr/gpg.txt - - Maitretarot - http://www.nongnu.org/maitretarot/ - - Perfparse - http://perfparse.sf.net/ - |
From: Ben C. <bcl...@pe...> - 2005-02-02 10:09:31
|
Yves, I have an urgent bug which will effect MySQL users and stored graphs. As luck would have it, I don't have access to my release machine. This machine having no access to Internet at the moment. I don't trust the machine I do have. As this would be really good training for your gues, I wonder if you wanted to give them a go at getting a release out? If you agree, I need: - The patch attached. - Version changed to 0.105.3 - aclocal, autoconf etc - make distcheck - ftp to upload.sf.net as anonymous and placed in directory 'incoming'. I can take it from there :) If not, I'll wrangle something together... Thanks! Ben -- Ben Clewett bcl...@pe... PerfParse http://www.perfparse.org PP FAQ http://wiki.perfparse.org/tiki-list_faqs.php |
From: Yves M. <yme...@li...> - 2005-01-28 10:27:30
|
Hello :) > I'm not sure on which versions of PostgreSQL pp works. At least on the one you developped :) > Till now I've only tested it on PostgreSQL 8.0.0rc1, but as there is no= thing special in > the postgres module, that is only suported in pg-8.0, I see no reason w= hy it should not > work on pg-7.X (at the moment). Who can write something about this in the Wiki (unless already done) ? pp supports Postgresql. Version 8.0 of PostgreSQL was tested with success= . No feedback yet about other Postgresql versions. Please report any problem/success wi= th other versions of Postgresql. Yves --=20 - Homepage - http://ymettier.free.fr - http://www.logicacmg.com - - GPG key - http://ymettier.free.fr/gpg.txt - - Maitretarot - http://www.nongnu.org/maitretarot/ - - Perfparse - http://perfparse.sf.net/ - |
From: Priewasser, F. <Fri...@fa...> - 2005-01-27 15:43:42
|
Hi I'm not sure on which versions of PostgreSQL pp works.=20 Till now I've only tested it on PostgreSQL 8.0.0rc1, but as there is = nothing special in the postgres module, that is only suported in pg-8.0, = I see no reason why it should not work on pg-7.X (at the moment). But a test would still be fine, maybe I (or someone else) finds some = time to test pp with pg-7.X ... Regards Friedrich -----Original Message----- From: Yves Mettier [mailto:yme...@li...] Sent: Fri 1/21/2005 4:11 PM To: per...@li... Cc:=09 Subject: [Perfparse-devel-int] postgresql : what version ? With pg-8.0 released, many will ask if pp still supports pg-7.X and if = it already support pg-8.0 Be ready to answer such questions :) (write something in the FAQ ?) I also suggest that you use pg_config --version to test if pp works with = that version of pg :) Yves --=20 - Homepage - http://ymettier.free.fr - http://www.logicacmg.com - - GPG key - http://ymettier.free.fr/gpg.txt - - Maitretarot - http://www.nongnu.org/maitretarot/ - - Perfparse - http://perfparse.sf.net/ - ------------------------------------------------------- This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting Tool for open source databases. Create drag-&-drop reports. Save time by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc. Download a FREE copy at http://www.intelliview.com/go/osdn_nl _______________________________________________ Perfparse-devel-int mailing list Per...@li... https://lists.sourceforge.net/lists/listinfo/perfparse-devel-int |
From: Priewasser, F. <Fri...@fa...> - 2005-01-27 15:11:38
|
Hi At last I found some time for a few changes and test. This are the main changes: -Added a few macros in the cgi part to abstract the data access -Changed the database, to use TEXT instead of VARCHAR -Added -lpp_postgresql to libpp_storage_postgresql_la_LIBADD in modules/Makefile.am, so that perfparse-log2any works on my computer. Don't know if it is necessary to create a converter for the database at the moment. Regards Friedrich -- Friedrich Priewasser Software Engineer Fabalabs Software GmbH Honauerstra=DFe 4 A-4020 Linz e-mail: mailto:fri...@fa... http://www.fabalabs.org |
From: Ben C. <bcl...@pe...> - 2005-01-24 10:55:56
|
You may complete this your self from the URI: http://sourceforge.net/mail/?group_id=109355 Regards, Ben :) dew...@fr... wrote: > > hello, > > is it possible to add me to these mailing lists please? > > thank you > > rémi dewynter > > > ------------------------------------------------------- > This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting > Tool for open source databases. Create drag-&-drop reports. Save time > by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc. > Download a FREE copy at http://www.intelliview.com/go/osdn_nl > _______________________________________________ > Perfparse-devel mailing list > Per...@li... > https://lists.sourceforge.net/lists/listinfo/perfparse-devel > -- Ben Clewett bcl...@pe... PerfParse http://www.perfparse.org PP FAQ http://wiki.perfparse.org/tiki-list_faqs.php |
From: <dew...@fr...> - 2005-01-24 10:41:21
|
hello, is it possible to add me to these mailing lists please? thank you r=E9mi dewynter |
From: Yves M. <yme...@li...> - 2005-01-21 15:11:27
|
With pg-8.0 released, many will ask if pp still supports pg-7.X and if it= already support pg-8.0 Be ready to answer such questions :) (write something in the FAQ ?) I also suggest that you use pg_config --version to test if pp works with = that version of pg :) Yves --=20 - Homepage - http://ymettier.free.fr - http://www.logicacmg.com - - GPG key - http://ymettier.free.fr/gpg.txt - - Maitretarot - http://www.nongnu.org/maitretarot/ - - Perfparse - http://perfparse.sf.net/ - |
From: Yves <yme...@pe...> - 2005-01-21 14:22:01
|
> You have to admit, although the code is perfect and well written, it > looks horrible: Yes, I do :) But when you have some experience with autotools, you can see what is imp= ortant and what is not, and understand. > My vision goes blurry just looking at it :) :) > Also I found a difference last night when half way there. > > I got to this same as you: > > POSTGRESQL_CFLAGS=3D`${PG_CONFIG} --cflags` > POSTGRESQL_LIBS=3D`${PG_CONFIG} --libs` > > But in fact needs to be: > > POSTGRESQL_CFLAGS=3D"-I`${PG_CONFIG} --cflags`" > POSTGRESQL_LIBS=3D"-L`${PG_CONFIG} --libs` -lpg" > > Makes big difference :) I cannot be "-I`${PG_CONFIG} --cflags... and "-L`${PG_CONFIG} --libs... := ) It has to be "${PG_CONFIG} --some_option_to_get_cflags" and "${PG_CONFIG} --some_options_to_get_libdirs_and_libs" Run pg_config --help and try to understand what it does. Then update conf= igure.ac :) Yves > > Ben. > > > > -- > Ben Clewett bcl...@pe... > PerfParse http://www.perfparse.org > PP FAQ http://wiki.perfparse.org/tiki-list_faqs.php > > > ------------------------------------------------------- > This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting > Tool for open source databases. Create drag-&-drop reports. Save time > by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc. > Download a FREE copy at http://www.intelliview.com/go/osdn_nl > _______________________________________________ > Perfparse-devel-int mailing list > Per...@li... > https://lists.sourceforge.net/lists/listinfo/perfparse-devel-int > > --=20 - Homepage - http://ymettier.free.fr - http://www.logicacmg.com - - GPG key - http://ymettier.free.fr/gpg.txt - - Maitretarot - http://www.nongnu.org/maitretarot/ - - Perfparse - http://perfparse.sf.net/ - |
From: Yves <yme...@pe...> - 2005-01-21 14:17:51
|
> Might you or Tim have the exit() problem solved on perfparsed for this > release? Probably not. Yves --=20 - Homepage - http://ymettier.free.fr - http://www.logicacmg.com - - GPG key - http://ymettier.free.fr/gpg.txt - - Maitretarot - http://www.nongnu.org/maitretarot/ - - Perfparse - http://perfparse.sf.net/ - |
From: Ben C. <bcl...@pe...> - 2005-01-21 14:10:36
|
Yves wrote: > Just like when mysql_config is missing :) OK, this is true. But I was trying to understand how the code works, before coping what could be rubbish when applied to PostgreSQL... You have to admit, although the code is perfect and well written, it looks horrible: PG_CONFIG_DIR= AC_ARG_WITH(pg_config_dir, [ --with-pg_config_dir=PATH pg_config full path (default=)],[ if test "$withval" != "no" -a "$withval" != "yes"; then PG_CONFIG_DIR=$withval fi ]) AC_PATH_PROG([PG_CONFIG], pg_config,[no], ${PG_CONFIG_DIR}:${PATH}) if test "x$PG_CONFIG" = "xno"; then AC_MSG_ERROR([Could not find pg_config]) fi My vision goes blurry just looking at it :) Also I found a difference last night when half way there. I got to this same as you: POSTGRESQL_CFLAGS=`${PG_CONFIG} --cflags` POSTGRESQL_LIBS=`${PG_CONFIG} --libs` But in fact needs to be: POSTGRESQL_CFLAGS="-I`${PG_CONFIG} --cflags`" POSTGRESQL_LIBS="-L`${PG_CONFIG} --libs` -lpg" Makes big difference :) Ben. -- Ben Clewett bcl...@pe... PerfParse http://www.perfparse.org PP FAQ http://wiki.perfparse.org/tiki-list_faqs.php |
From: Ben C. <bcl...@pe...> - 2005-01-21 14:03:10
|
I get the error. Friedrich has enlarged the size of the time variables in order to hold the longer time format of PostgreSQL: (not ISO standard definition :) MySQL: 'YYYY-MM-DD HH:MM:SS' PSQL: 'YYYY-MM-DD HH:MM:SS.mmm' But not enlarged the definition held in MySQL code-space. (Unfortunately the timestamp from Nag does not use milliseconds, so cannot use this anyway :) This will need some work since I use this variable directly on the CGI pages, and PSQL will need shortening back to the MySQL variant.... For time being I believe ignoring the warning will work. Odd, I don't get this on my setup. There are some other bits I've fixed, so will move to get out 0.105.2 soon. Then publicly announce PerfParse with PostgreSQL!!! Might you or Tim have the exit() problem solved on perfparsed for this release? Friedrich, Is there anything else you want to add to the release? Ben. Yves wrote: > Hi Ben, > > I found time to check configure.ac and Makefile.am files. > Check the attached patch. > > With that, you are supposed to have the pg_config executable (just like the mysql_config > one) and configure will use it to set POSTGRESQL_CFLAGS and POSTGRESQL_LIBS. > > I also noticed some mistakes : > - postgressql mistyping :) > - you cannot init the same variable in 2 distinct conditionnals blocs (limitation of > automake ?) > > I fixed them. > > I have not tested what I did, so please do it. > > I noticed some problems when compiling perfparse with mysql support. See the attached > file. No time to debug myself. Sorry :) > > Yves > > -- Ben Clewett bcl...@pe... PerfParse http://www.perfparse.org PP FAQ http://wiki.perfparse.org/tiki-list_faqs.php |
From: Yves <yme...@pe...> - 2005-01-21 13:56:45
|
> Thanks for the patches. I'll apply those. I found the pg_config > program, but wasn't sure how to error if program not found. Now I know= :) Just like when mysql_config is missing :) Yves --=20 - Homepage - http://ymettier.free.fr - http://www.logicacmg.com - - GPG key - http://ymettier.free.fr/gpg.txt - - Maitretarot - http://www.nongnu.org/maitretarot/ - - Perfparse - http://perfparse.sf.net/ - |
From: Ben C. <bcl...@pe...> - 2005-01-21 13:47:24
|
Yves, Thanks for the patches. I'll apply those. I found the pg_config program, but wasn't sure how to error if program not found. Now I know :) Thanks for the fix as well. I'll look at the MySQL compilation problem and email you later. Ben Yves wrote: > Hi Ben, > > I found time to check configure.ac and Makefile.am files. > Check the attached patch. > > With that, you are supposed to have the pg_config executable (just like the mysql_config > one) and configure will use it to set POSTGRESQL_CFLAGS and POSTGRESQL_LIBS. > > I also noticed some mistakes : > - postgressql mistyping :) > - you cannot init the same variable in 2 distinct conditionnals blocs (limitation of > automake ?) > > I fixed them. > > I have not tested what I did, so please do it. > > I noticed some problems when compiling perfparse with mysql support. See the attached > file. No time to debug myself. Sorry :) > > Yves > > -- Ben Clewett bcl...@pe... PerfParse http://www.perfparse.org PP FAQ http://wiki.perfparse.org/tiki-list_faqs.php |
From: Yves <yme...@pe...> - 2005-01-21 13:36:39
|
Hi Ben, I found time to check configure.ac and Makefile.am files. Check the attached patch. With that, you are supposed to have the pg_config executable (just like t= he mysql_config one) and configure will use it to set POSTGRESQL_CFLAGS and POSTGRESQL_LI= BS. I also noticed some mistakes : - postgressql mistyping :) - you cannot init the same variable in 2 distinct conditionnals blocs (li= mitation of automake ?) I fixed them. I have not tested what I did, so please do it. I noticed some problems when compiling perfparse with mysql support. See = the attached file. No time to debug myself. Sorry :) Yves --=20 - Homepage - http://ymettier.free.fr - http://www.logicacmg.com - - GPG key - http://ymettier.free.fr/gpg.txt - - Maitretarot - http://www.nongnu.org/maitretarot/ - - Perfparse - http://perfparse.sf.net/ - |
From: Ben C. <bcl...@pe...> - 2005-01-19 14:04:31
|
Friedrich, I will release the version containing PostgreSQL. Would you be able to look at the FAQ questions regarding MySQL on wiki.perfparse.org and create a similar question for PostgreSQL. for example, how do I setup the database? Before you do that, create your self as a member of wiki.perfparse.org and I will give you admin permissions. I have cc'd this email to perfparse-devel-int where other developers may want to comment. Or not :) Ben -- Ben Clewett bcl...@pe... PerfParse http://www.perfparse.org PP FAQ http://wiki.perfparse.org/tiki-list_faqs.php |
From: Yves <yme...@pe...> - 2005-01-17 14:17:57
|
Hi all, I took a lot of the mail I'm answering and copy/pasted it in http://wiki.perfparse.org/tiki-view_faq.php?faqId=3D5#q20 When you port perfparse to some new database engine, could you update tha= t FAQ with what you think good that others knew, and what was missing for you that you wo= uld have been a little more happy if you had knew it ? Thanks in advance, Yves --=20 - Homepage - http://ymettier.free.fr - http://www.logicacmg.com - - GPG key - http://ymettier.free.fr/gpg.txt - - Maitretarot - http://www.nongnu.org/maitretarot/ - - Perfparse - http://perfparse.sf.net/ - |