You can subscribe to this list here.
2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(19) |
Oct
(10) |
Nov
(14) |
Dec
(58) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2007 |
Jan
|
Feb
(5) |
Mar
(33) |
Apr
(31) |
May
(3) |
Jun
(30) |
Jul
(4) |
Aug
(26) |
Sep
(23) |
Oct
|
Nov
(6) |
Dec
(56) |
2008 |
Jan
(12) |
Feb
(9) |
Mar
(2) |
Apr
(8) |
May
(2) |
Jun
(3) |
Jul
(4) |
Aug
(1) |
Sep
|
Oct
|
Nov
(16) |
Dec
(4) |
2009 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(36) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2010 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(4) |
Oct
|
Nov
|
Dec
|
From: Florian G. <re...@us...> - 2006-12-23 00:03:48
|
Update of /cvsroot/perfparse/_perfparse/perfparse In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21363/perfparse Modified Files: log_reader.c perfparsed.c server_parser.c storage.c Log Message: comments Index: perfparsed.c =================================================================== RCS file: /cvsroot/perfparse/_perfparse/perfparse/perfparsed.c,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** perfparsed.c 22 Mar 2006 11:25:45 -0000 1.3 --- perfparsed.c 23 Dec 2006 00:03:46 -0000 1.4 *************** *** 4,8 **** * * Copyright (c) 2004 Yves Mettier (yme...@li...) ! * Last Modified: 2004-09-01 * * License: --- 4,8 ---- * * Copyright (c) 2004 Yves Mettier (yme...@li...) ! * $Id$ * * License: *************** *** 191,204 **** } ! atexit(storage_atexit); ! storage_connect(); ! storage_dump_status(); ! registry_update(); /* Open the log file */ ! log_reader_install_signal_handler(); service_log_source = config_get_value_as_string(CONFIG_ITEM_ID_SERVICE_LOG); if(service_log_source[0] && (0 > (open_log_source(service_log_source)))) { exit(EXIT_FAILURE); } --- 191,205 ---- } ! atexit(storage_atexit); // register exit for storage modules ! storage_connect(); // open storage for writing ! storage_dump_status(); // dump status of storage modules to file ! registry_update(); // writes infos from uname, pp version and compile date to registry /* Open the log file */ ! log_reader_install_signal_handler(); // handles signals on log sources service_log_source = config_get_value_as_string(CONFIG_ITEM_ID_SERVICE_LOG); if(service_log_source[0] && (0 > (open_log_source(service_log_source)))) { + pp_log(__FILE__,__LINE__,_("Could not open log source ('%s') configured in Service_Log"),service_log_source); exit(EXIT_FAILURE); } *************** *** 256,258 **** exit(EXIT_SUCCESS); } - --- 257,258 ---- Index: server_parser.c =================================================================== RCS file: /cvsroot/perfparse/_perfparse/perfparse/server_parser.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** server_parser.c 26 Sep 2005 14:36:33 -0000 1.1.1.1 --- server_parser.c 23 Dec 2006 00:03:46 -0000 1.2 *************** *** 4,8 **** * * Copyright (c) 2004 Yves Mettier (yme...@li...) ! * Last Modified: 2004-09-01 * * License: --- 4,8 ---- * * Copyright (c) 2004 Yves Mettier (yme...@li...) ! * $Id$ * * License: *************** *** 279,281 **** } - --- 279,280 ---- Index: log_reader.c =================================================================== RCS file: /cvsroot/perfparse/_perfparse/perfparse/log_reader.c,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** log_reader.c 28 Oct 2006 21:41:59 -0000 1.3 --- log_reader.c 23 Dec 2006 00:03:46 -0000 1.4 *************** *** 109,112 **** --- 109,117 ---- } + /* + * use select call to wait for max one second to get a log source with pending + * data + */ + void log_source_test_input(void) { int i; *************** *** 553,556 **** --- 558,567 ---- } + + /* + * Functions to handle signals (INT,TERM,PIPE) + * + */ + void sig_handler(int n) { char *sigstr[] = {"SIGINT","SIGTERM", N_("Unexpected signal")}; Index: storage.c =================================================================== RCS file: /cvsroot/perfparse/_perfparse/perfparse/storage.c,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** storage.c 24 Aug 2006 12:27:25 -0000 1.2 --- storage.c 23 Dec 2006 00:03:46 -0000 1.3 *************** *** 198,201 **** --- 198,205 ---- } + /* + * called when the program (perfparsed et al) + * exits + */ void storage_atexit(void) { storage_module_element_t *this; *************** *** 290,293 **** --- 294,301 ---- #ifdef PERFPARSED + /* + * Dumps the status (enabled|disabled) of a storage module to the + * file configured in storage module status file config + */ void storage_dump_status(void) { char*file; |
From: Florian G. <re...@us...> - 2006-12-23 00:03:48
|
Update of /cvsroot/perfparse/_perfparse/libpp_mysql In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21363/libpp_mysql Modified Files: del_policy.c Log Message: comments Index: del_policy.c =================================================================== RCS file: /cvsroot/perfparse/_perfparse/libpp_mysql/del_policy.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** del_policy.c 26 Sep 2005 14:36:33 -0000 1.1.1.1 --- del_policy.c 23 Dec 2006 00:03:46 -0000 1.2 *************** *** 4,8 **** * * Copyright (c) 2004 Ben Clewett (per...@cl...) ! * Last Modified: 2004-05-28 * * License: --- 4,8 ---- * * Copyright (c) 2004 Ben Clewett (per...@cl...) ! * $Id$ * * License: *************** *** 397,402 **** { /* [TODO] */ ! } ! ! ! --- 397,399 ---- { /* [TODO] */ ! } |
From: Florian G. <re...@us...> - 2006-12-22 20:07:49
|
Update of /cvsroot/perfparse/_perfparse/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31216 Modified Files: perfparsed.sh Log Message: parametrisized some and made perfparsed run as nagios user Index: perfparsed.sh =================================================================== RCS file: /cvsroot/perfparse/_perfparse/scripts/perfparsed.sh,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** perfparsed.sh 21 Dec 2006 15:38:11 -0000 1.1 --- perfparsed.sh 22 Dec 2006 20:07:47 -0000 1.2 *************** *** 3,7 **** # # Startup script for perfparsed ! # # ### BEGIN INIT INFO --- 3,7 ---- # # Startup script for perfparsed ! # $Id$ # ### BEGIN INIT INFO *************** *** 16,19 **** --- 16,22 ---- PPPIPE=/usr/local/nagios/var/serviceperf.log + NAGIOS_USER=nagios + NAGIOS_GROUP=nagios + PERFPARSED=/usr/local/nagios/bin/perfparsed case "$1" in *************** *** 23,34 **** mv $PPPIPE ${PPPIPE}.old mkfifo $PPPIPE ! chown nagios2:nagios2 $PPPIPE APPLY_OLD_DATA=1 fi echo "Starting perfparsed" ! /usr/local/nagios/bin/perfparsed -d if [ "$APPLY_OLD_DATA" ] ; then echo "applying old data" ! cat ${PPPIPE}.old >> $PPPIPE fi ;; --- 26,37 ---- mv $PPPIPE ${PPPIPE}.old mkfifo $PPPIPE ! chown ${NAGIOS_USER}:${NAGIOS_GROUP} $PPPIPE APPLY_OLD_DATA=1 fi echo "Starting perfparsed" ! su $NAGIOS_USER -c "$PERFPARSED -d" if [ "$APPLY_OLD_DATA" ] ; then echo "applying old data" ! su $NAGIOS_USER -c "cat ${PPPIPE}.old >> $PPPIPE" fi ;; |
From: Florian G. <re...@us...> - 2006-12-21 15:38:14
|
Update of /cvsroot/perfparse/_perfparse/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10026 Added Files: perfparsed.sh Log Message: Startup script for perfparsed added --- NEW FILE: perfparsed.sh --- #! /bin/bash # # # Startup script for perfparsed # # ### BEGIN INIT INFO # Provides: perfparsed # Required-Start: $local_fs $remote_fs $syslog # Required-Stop: # Default-Start: 2 3 5 # Default-Stop: # Description: Start the perfparse daemon. ### END INIT INFO PPPIPE=/usr/local/nagios/var/serviceperf.log case "$1" in start) if [ -f $PPPIPE ] ; then echo "creating pipe" mv $PPPIPE ${PPPIPE}.old mkfifo $PPPIPE chown nagios2:nagios2 $PPPIPE APPLY_OLD_DATA=1 fi echo "Starting perfparsed" /usr/local/nagios/bin/perfparsed -d if [ "$APPLY_OLD_DATA" ] ; then echo "applying old data" cat ${PPPIPE}.old >> $PPPIPE fi ;; stop) killproc perfparsed ;; *) echo "Usage: $0 {start|stop}" exit 1 esac |
From: Florian G. <re...@us...> - 2006-12-21 13:38:34
|
Update of /cvsroot/perfparse/_perfparse In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29793 Modified Files: TODO Log Message: more idea Index: TODO =================================================================== RCS file: /cvsroot/perfparse/_perfparse/TODO,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** TODO 20 Dec 2006 22:57:45 -0000 1.6 --- TODO 21 Dec 2006 13:38:32 -0000 1.7 *************** *** 8,10 **** - make rrd-like tables work - make easier interface for deleting or renaming things (hosts, services, metrics) ! --- 8,10 ---- - make rrd-like tables work - make easier interface for deleting or renaming things (hosts, services, metrics) ! - support for logarithmic scales |
From: Florian G. <re...@us...> - 2006-12-20 22:57:55
|
Update of /cvsroot/perfparse/_perfparse/modules In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27132/modules Modified Files: Makefile.in storage_mysql.c Log Message: eleminated perfparse.org domain since we lost it. Index: Makefile.in =================================================================== RCS file: /cvsroot/perfparse/_perfparse/modules/Makefile.in,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** Makefile.in 2 Dec 2006 21:31:10 -0000 1.17 --- Makefile.in 20 Dec 2006 22:57:46 -0000 1.18 *************** *** 1,3 **** ! # Makefile.in generated by automake 1.9.5 from Makefile.am. # @configure_input@ --- 1,3 ---- ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ *************** *** 15,20 **** @SET_MAKE@ - SOURCES = $(libpp_storage_file_output_la_SOURCES) $(libpp_storage_gnuplot_la_SOURCES) $(libpp_storage_mysql_la_SOURCES) $(libpp_storage_postgresql_la_SOURCES) $(libpp_storage_print_la_SOURCES) $(libpp_storage_socket_output_la_SOURCES) $(libpp_storage_stdout_la_SOURCES) - srcdir = @srcdir@ top_srcdir = @top_srcdir@ --- 15,18 ---- Index: storage_mysql.c =================================================================== RCS file: /cvsroot/perfparse/_perfparse/modules/storage_mysql.c,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** storage_mysql.c 16 Dec 2006 22:38:55 -0000 1.10 --- storage_mysql.c 20 Dec 2006 22:57:47 -0000 1.11 *************** *** 5,9 **** * $Id$ * ! * Copyright (c) 2004 Ben Clewett (bcl...@pe...) * * License: --- 5,9 ---- * $Id$ * ! * Copyright (c) 2004 Ben Clewett * * License: |
From: Florian G. <re...@us...> - 2006-12-20 22:57:53
|
Update of /cvsroot/perfparse/_perfparse/po In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27132/po Modified Files: de.po fr.po Log Message: eleminated perfparse.org domain since we lost it. Index: fr.po =================================================================== RCS file: /cvsroot/perfparse/_perfparse/po/fr.po,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** fr.po 26 Sep 2005 14:36:33 -0000 1.1.1.1 --- fr.po 20 Dec 2006 22:57:47 -0000 1.2 *************** *** 1091,1098 **** #: cgi/perfgraph.c:301 msgid "" ! "Please check the <a href=\"http://www.perfparse.org\">project</a> page for " "more details." msgstr "" ! "Voyez la page du <a href=\"http://www.perfparse.org\">projet</a> pour plus " "d'informations" --- 1091,1098 ---- #: cgi/perfgraph.c:301 msgid "" ! "Please check the <a href=\"http://www.perfparse.de\">project</a> page for " "more details." msgstr "" ! "Voyez la page du <a href=\"http://www.perfparse.de\">projet</a> pour plus " "d'informations" Index: de.po =================================================================== RCS file: /cvsroot/perfparse/_perfparse/po/de.po,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** de.po 26 Sep 2005 14:36:33 -0000 1.1.1.1 --- de.po 20 Dec 2006 22:57:47 -0000 1.2 *************** *** 1097,1104 **** #: cgi/perfgraph.c:301 msgid "" ! "Please check the <a href=\"http://www.perfparse.org\">project</a> page for " "more details." msgstr "" ! "Bitte konsultieren Sie die <a href=\"http://www.perfparse.org\">Seite dieses " "Projektes</a> für mehr Details." --- 1097,1104 ---- #: cgi/perfgraph.c:301 msgid "" ! "Please check the <a href=\"http://www.perfparse.de\">project</a> page for " "more details." msgstr "" ! "Bitte konsultieren Sie die <a href=\"http://www.perfparse.de\">Seite dieses " "Projektes</a> für mehr Details." |
From: Florian G. <re...@us...> - 2006-12-20 22:57:51
|
Update of /cvsroot/perfparse/_perfparse/libpp_postgresql In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27132/libpp_postgresql Modified Files: Makefile.in Log Message: eleminated perfparse.org domain since we lost it. Index: Makefile.in =================================================================== RCS file: /cvsroot/perfparse/_perfparse/libpp_postgresql/Makefile.in,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** Makefile.in 2 Dec 2006 21:31:10 -0000 1.17 --- Makefile.in 20 Dec 2006 22:57:46 -0000 1.18 *************** *** 1,3 **** ! # Makefile.in generated by automake 1.9.5 from Makefile.am. # @configure_input@ --- 1,3 ---- ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ *************** *** 15,20 **** @SET_MAKE@ - SOURCES = $(libpp_postgresql_la_SOURCES) - srcdir = @srcdir@ top_srcdir = @top_srcdir@ --- 15,18 ---- |
From: Florian G. <re...@us...> - 2006-12-20 22:57:51
|
Update of /cvsroot/perfparse/_perfparse/perfparse In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27132/perfparse Modified Files: Makefile.in Log Message: eleminated perfparse.org domain since we lost it. Index: Makefile.in =================================================================== RCS file: /cvsroot/perfparse/_perfparse/perfparse/Makefile.in,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** Makefile.in 2 Dec 2006 21:31:10 -0000 1.17 --- Makefile.in 20 Dec 2006 22:57:47 -0000 1.18 *************** *** 1,3 **** ! # Makefile.in generated by automake 1.9.5 from Makefile.am. # @configure_input@ --- 1,3 ---- ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ *************** *** 15,20 **** @SET_MAKE@ - SOURCES = $(perfparse_log2any_SOURCES) $(perfparsed_SOURCES) - srcdir = @srcdir@ top_srcdir = @top_srcdir@ --- 15,18 ---- |
Update of /cvsroot/perfparse/_perfparse/cgi In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27132/cgi Modified Files: Makefile.in cgi.c cgi.h cgi_bin_report.c cgi_bin_report.h cgi_bin_summary_policy.c cgi_bin_summary_policy.h cgi_del_policy.c cgi_del_policy.h cgi_graph.c cgi_graph.h cgi_host_groups.c cgi_host_groups.h cgi_intro.c cgi_intro.h cgi_raw_report.c cgi_raw_report.h cgi_select_object.c cgi_select_object.h object_users.c object_users.h perfchart.c perfgant.c perfgraph.c perfgraph.h Log Message: eleminated perfparse.org domain since we lost it. Index: perfgraph.c =================================================================== RCS file: /cvsroot/perfparse/_perfparse/cgi/perfgraph.c,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** perfgraph.c 24 Aug 2006 15:27:36 -0000 1.3 --- perfgraph.c 20 Dec 2006 22:57:45 -0000 1.4 *************** *** 3,7 **** * perfparse.c - Common program to display all CGI. * ! * Copyright (c) 2004 Ben Clewett (bcl...@pe...) * * $Id$ --- 3,7 ---- * perfparse.c - Common program to display all CGI. * ! * Copyright (c) 2004 Ben Clewett * * $Id$ *************** *** 312,316 **** printf(" <td align=center>%s\n", FONT); printf(" <b>%s</b><br>\n",_("This option is currently unsupported.")); ! printf(" %s<br>\n",_("Please check the <a href=\"http://www.perfparse.org\">project</a> page for more details.")); printf(" <a href=\"%s\">%s</a>\n", sProgName,_("Return to main menu")); printf(" </font></td>\n"); --- 312,316 ---- printf(" <td align=center>%s\n", FONT); printf(" <b>%s</b><br>\n",_("This option is currently unsupported.")); ! printf(" %s<br>\n",_("Please check the <a href=\"http://www.perfparse.de\">project</a> page for more details.")); printf(" <a href=\"%s\">%s</a>\n", sProgName,_("Return to main menu")); printf(" </font></td>\n"); Index: cgi_host_groups.c =================================================================== RCS file: /cvsroot/perfparse/_perfparse/cgi/cgi_host_groups.c,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** cgi_host_groups.c 15 Nov 2005 10:28:13 -0000 1.2 --- cgi_host_groups.c 20 Dec 2006 22:57:45 -0000 1.3 *************** *** 3,8 **** * cgi_host_groups - CGI to define the host groups. * ! * Copyright (c) 2004 Ben Clewett (bcl...@pe...) ! * Last Modified: 2004-05-28 * * License: --- 3,8 ---- * cgi_host_groups - CGI to define the host groups. * ! * Copyright (c) 2004 Ben Clewett ! * $Id$ * * License: Index: Makefile.in =================================================================== RCS file: /cvsroot/perfparse/_perfparse/cgi/Makefile.in,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** Makefile.in 2 Dec 2006 21:31:09 -0000 1.17 --- Makefile.in 20 Dec 2006 22:57:45 -0000 1.18 *************** *** 1,3 **** ! # Makefile.in generated by automake 1.9.5 from Makefile.am. # @configure_input@ --- 1,3 ---- ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ *************** *** 15,20 **** @SET_MAKE@ - SOURCES = $(perfchart_png_SOURCES) $(perfgant_png_SOURCES) $(perfparse_cgi_SOURCES) - srcdir = @srcdir@ top_srcdir = @top_srcdir@ --- 15,18 ---- Index: cgi_host_groups.h =================================================================== RCS file: /cvsroot/perfparse/_perfparse/cgi/cgi_host_groups.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** cgi_host_groups.h 26 Sep 2005 14:36:33 -0000 1.1.1.1 --- cgi_host_groups.h 20 Dec 2006 22:57:45 -0000 1.2 *************** *** 3,8 **** * cgi_host_groups - CGI to define the host groups. * ! * Copyright (c) 2004 Ben Clewett (bcl...@pe...) ! * Last Modified: 2004-05-28 * * License: --- 3,8 ---- * cgi_host_groups - CGI to define the host groups. * ! * Copyright (c) 2004 Ben Clewett ! * $Id$ * * License: Index: perfgraph.h =================================================================== RCS file: /cvsroot/perfparse/_perfparse/cgi/perfgraph.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** perfgraph.h 26 Sep 2005 14:36:33 -0000 1.1.1.1 --- perfgraph.h 20 Dec 2006 22:57:45 -0000 1.2 *************** *** 3,8 **** * perfgraph.c - Common program to display all CGI. * ! * Copyright (c) 2004 Ben Clewett (bcl...@pe...) ! * Last Modified: 2004-05-28 * * License: --- 3,8 ---- * perfgraph.c - Common program to display all CGI. * ! * Copyright (c) 2004 Ben Clewett ! * $Id$ * * License: Index: perfgant.c =================================================================== RCS file: /cvsroot/perfparse/_perfparse/cgi/perfgant.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** perfgant.c 26 Sep 2005 14:36:33 -0000 1.1.1.1 --- perfgant.c 20 Dec 2006 22:57:45 -0000 1.2 *************** *** 3,8 **** * perfgant.c - Displays a gant chart of state changes * ! * Copyright (c) 2004 Ben Clewett (bcl...@pe...) ! * Last Modified: 2004-07-22 * * License: --- 3,8 ---- * perfgant.c - Displays a gant chart of state changes * ! * Copyright (c) 2004 Ben Clewett ! * $Id$ * * License: Index: cgi_bin_summary_policy.h =================================================================== RCS file: /cvsroot/perfparse/_perfparse/cgi/cgi_bin_summary_policy.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** cgi_bin_summary_policy.h 26 Sep 2005 14:36:33 -0000 1.1.1.1 --- cgi_bin_summary_policy.h 20 Dec 2006 22:57:45 -0000 1.2 *************** *** 3,8 **** * cgi_bin_summary_policy - cgi to define the binary summary data * ! * Copyright (c) 2004 Ben Clewett (bcl...@pe...) ! * Last Modified: 2004-12-30 * * License: --- 3,8 ---- * cgi_bin_summary_policy - cgi to define the binary summary data * ! * Copyright (c) 2004 Ben Clewett ! * $Id$ * * License: Index: cgi_bin_report.h =================================================================== RCS file: /cvsroot/perfparse/_perfparse/cgi/cgi_bin_report.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** cgi_bin_report.h 26 Sep 2005 14:36:33 -0000 1.1.1.1 --- cgi_bin_report.h 20 Dec 2006 22:57:45 -0000 1.2 *************** *** 3,8 **** * cgi_bin_report - CGI reports of Binary data * ! * Copyright (c) 2004 Ben Clewett (bcl...@pe...) ! * Last Modified: 2004-05-28 * * License: --- 3,8 ---- * cgi_bin_report - CGI reports of Binary data * ! * Copyright (c) 2004 Ben Clewett ! * $Id$ * * License: Index: cgi_intro.h =================================================================== RCS file: /cvsroot/perfparse/_perfparse/cgi/cgi_intro.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** cgi_intro.h 26 Sep 2005 14:36:33 -0000 1.1.1.1 --- cgi_intro.h 20 Dec 2006 22:57:45 -0000 1.2 *************** *** 3,8 **** * cgi_into - Display an Intro to the CGI * ! * Copyright (c) 2004 Ben Clewett (bcl...@pe...) ! * Last Modified: 2004-05-28 * * License: --- 3,8 ---- * cgi_into - Display an Intro to the CGI * ! * Copyright (c) 2004 Ben Clewett ! * $Id$ * * License: Index: cgi_bin_summary_policy.c =================================================================== RCS file: /cvsroot/perfparse/_perfparse/cgi/cgi_bin_summary_policy.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** cgi_bin_summary_policy.c 26 Sep 2005 14:36:33 -0000 1.1.1.1 --- cgi_bin_summary_policy.c 20 Dec 2006 22:57:45 -0000 1.2 *************** *** 3,8 **** * cgi_bin_summary.c - Defintion of the binary summary tables. * ! * Copyright (c) 2004 Ben Clewett (bcl...@pe...) ! * Last Modified: 2004-05-28 * * License: --- 3,8 ---- * cgi_bin_summary.c - Defintion of the binary summary tables. * ! * Copyright (c) 2004 Ben Clewett ! * $Id$ * * License: Index: cgi_intro.c =================================================================== RCS file: /cvsroot/perfparse/_perfparse/cgi/cgi_intro.c,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** cgi_intro.c 19 Mar 2006 08:32:00 -0000 1.3 --- cgi_intro.c 20 Dec 2006 22:57:45 -0000 1.4 *************** *** 3,8 **** * cgi_into - Display an Intro to the CGI * ! * Copyright (c) 2004-2006 Ben Clewett (bcl...@pe...) ! * Last Modified: 2004-05-28 * * License: --- 3,8 ---- * cgi_into - Display an Intro to the CGI * ! * Copyright (c) 2004-2006 Ben Clewett ! * $Id$ * * License: Index: cgi_bin_report.c =================================================================== RCS file: /cvsroot/perfparse/_perfparse/cgi/cgi_bin_report.c,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** cgi_bin_report.c 15 Nov 2005 10:28:13 -0000 1.2 --- cgi_bin_report.c 20 Dec 2006 22:57:45 -0000 1.3 *************** *** 3,8 **** * cgi_bin_report - CGI reports of Binary data * ! * Copyright (c) 2004 Ben Clewett (bcl...@pe...) ! * Last Modified: 2004-05-28 * * License: --- 3,8 ---- * cgi_bin_report - CGI reports of Binary data * ! * Copyright (c) 2004 Ben Clewett ! * $Id$ * * License: Index: cgi_raw_report.h =================================================================== RCS file: /cvsroot/perfparse/_perfparse/cgi/cgi_raw_report.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** cgi_raw_report.h 26 Sep 2005 14:36:33 -0000 1.1.1.1 --- cgi_raw_report.h 20 Dec 2006 22:57:45 -0000 1.2 *************** *** 3,8 **** * cgi_raw_report - Display report of raw data. * ! * Copyright (c) 2004 Ben Clewett (bcl...@pe...) ! * Last Modified: 2004-05-28 * * License: --- 3,8 ---- * cgi_raw_report - Display report of raw data. * ! * Copyright (c) 2004 Ben Clewett ! * $Id$ * * License: Index: cgi_raw_report.c =================================================================== RCS file: /cvsroot/perfparse/_perfparse/cgi/cgi_raw_report.c,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** cgi_raw_report.c 15 Nov 2005 10:28:13 -0000 1.2 --- cgi_raw_report.c 20 Dec 2006 22:57:45 -0000 1.3 *************** *** 3,8 **** * cgi_raw_report - Display report of raw data. * ! * Copyright (c) 2004 Ben Clewett (bcl...@pe...) ! * Last Modified: 2004-05-28 * * License: --- 3,8 ---- * cgi_raw_report - Display report of raw data. * ! * Copyright (c) 2004 Ben Clewett ! * $Id$ * * License: Index: object_users.h =================================================================== RCS file: /cvsroot/perfparse/_perfparse/cgi/object_users.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** object_users.h 26 Sep 2005 14:36:33 -0000 1.1.1.1 --- object_users.h 20 Dec 2006 22:57:45 -0000 1.2 *************** *** 3,8 **** * object_users - encapsulations of the users for use of CGI code * ! * Copyright (c) 2004 Ben Clewett (bcl...@pe...) ! * Last Modified: 2004-12-31 * * License: --- 3,8 ---- * object_users - encapsulations of the users for use of CGI code * ! * Copyright (c) 2004 Ben Clewett ! * $Id$ * * License: Index: object_users.c =================================================================== RCS file: /cvsroot/perfparse/_perfparse/cgi/object_users.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** object_users.c 26 Sep 2005 14:36:33 -0000 1.1.1.1 --- object_users.c 20 Dec 2006 22:57:45 -0000 1.2 *************** *** 3,8 **** * object_users - encapsulations of the users for use of CGI code * ! * Copyright (c) 2004 Ben Clewett (bcl...@pe...) ! * Last Modified: 2004-12-31 * * License: --- 3,8 ---- * object_users - encapsulations of the users for use of CGI code * ! * Copyright (c) 2004 Ben Clewett ! * $Id$ * * License: Index: cgi_del_policy.h =================================================================== RCS file: /cvsroot/perfparse/_perfparse/cgi/cgi_del_policy.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** cgi_del_policy.h 26 Sep 2005 14:36:33 -0000 1.1.1.1 --- cgi_del_policy.h 20 Dec 2006 22:57:45 -0000 1.2 *************** *** 3,8 **** * cgi_del_policy - cgi to define the delete policies * ! * Copyright (c) 2004 Ben Clewett (bcl...@pe...) ! * Last Modified: 2004-05-28 * * License: --- 3,8 ---- * cgi_del_policy - cgi to define the delete policies * ! * Copyright (c) 2004 Ben Clewett ! * $Id$ * * License: Index: cgi.c =================================================================== RCS file: /cvsroot/perfparse/_perfparse/cgi/cgi.c,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** cgi.c 22 Mar 2006 16:29:46 -0000 1.2 --- cgi.c 20 Dec 2006 22:57:45 -0000 1.3 *************** *** 3,8 **** * cgi.c - Common functions for cgi functions. * ! * Copyright (c) 2004 Ben Clewett (bcl...@pe...) ! * Last Modified: 2004-05-28 * * License: --- 3,8 ---- * cgi.c - Common functions for cgi functions. * ! * Copyright (c) 2004 Ben Clewett ! * $Id$ * * License: Index: cgi.h =================================================================== RCS file: /cvsroot/perfparse/_perfparse/cgi/cgi.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** cgi.h 26 Sep 2005 14:36:33 -0000 1.1.1.1 --- cgi.h 20 Dec 2006 22:57:45 -0000 1.2 *************** *** 3,8 **** * cgi.h - Common functions for cgi * ! * Copyright (c) 2004 Ben Clewett (bcl...@pe...) ! * Last Modified: 2004-05-28 * * License: --- 3,8 ---- * cgi.h - Common functions for cgi * ! * Copyright (c) 2004 Ben Clewett ! * $Id$ * * License: Index: cgi_del_policy.c =================================================================== RCS file: /cvsroot/perfparse/_perfparse/cgi/cgi_del_policy.c,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** cgi_del_policy.c 15 Nov 2005 10:28:13 -0000 1.2 --- cgi_del_policy.c 20 Dec 2006 22:57:45 -0000 1.3 *************** *** 3,8 **** * cgi_del_policy - cgi to define the delete policies * ! * Copyright (c) 2004 Ben Clewett (bcl...@pe...) ! * Last Modified: 2004-05-28 * * License: --- 3,8 ---- * cgi_del_policy - cgi to define the delete policies * ! * Copyright (c) 2004 Ben Clewett ! * $Id$ * * License: Index: cgi_select_object.c =================================================================== RCS file: /cvsroot/perfparse/_perfparse/cgi/cgi_select_object.c,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** cgi_select_object.c 15 Nov 2005 10:28:13 -0000 1.2 --- cgi_select_object.c 20 Dec 2006 22:57:45 -0000 1.3 *************** *** 3,8 **** * cgi_select_object - CGI to select an object. * ! * Copyright (c) 2004 Ben Clewett (bcl...@pe...) ! * Last Modified: 2004-05-28 * * License: --- 3,8 ---- * cgi_select_object - CGI to select an object. * ! * Copyright (c) 2004 Ben Clewett ! * $Id$ * * License: Index: cgi_select_object.h =================================================================== RCS file: /cvsroot/perfparse/_perfparse/cgi/cgi_select_object.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** cgi_select_object.h 26 Sep 2005 14:36:33 -0000 1.1.1.1 --- cgi_select_object.h 20 Dec 2006 22:57:45 -0000 1.2 *************** *** 3,8 **** * cgi_select_object - CGI to select an object. * ! * Copyright (c) 2004 Ben Clewett (bcl...@pe...) ! * Last Modified: 2004-05-28 * * License: --- 3,8 ---- * cgi_select_object - CGI to select an object. * ! * Copyright (c) 2004 Ben Clewett ! * $Id$ * * License: Index: perfchart.c =================================================================== RCS file: /cvsroot/perfparse/_perfparse/cgi/perfchart.c,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** perfchart.c 15 Sep 2006 06:34:52 -0000 1.7 --- perfchart.c 20 Dec 2006 22:57:45 -0000 1.8 *************** *** 3,7 **** * perfchart.c - Displays graphs of data. * ! * Copyright (c) 2004 Ben Clewett (bcl...@pe...) * * $Id$ --- 3,7 ---- * perfchart.c - Displays graphs of data. * ! * Copyright (c) 2004 Ben Clewett * * $Id$ Index: cgi_graph.c =================================================================== RCS file: /cvsroot/perfparse/_perfparse/cgi/cgi_graph.c,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** cgi_graph.c 24 Aug 2006 15:27:35 -0000 1.4 --- cgi_graph.c 20 Dec 2006 22:57:45 -0000 1.5 *************** *** 3,7 **** * cgi_graph - cgi to call graphs. * ! * Copyright (c) 2004 Ben Clewett (bcl...@pe...) * * $Id$ --- 3,7 ---- * cgi_graph - cgi to call graphs. * ! * Copyright (c) 2004 Ben Clewett * * $Id$ Index: cgi_graph.h =================================================================== RCS file: /cvsroot/perfparse/_perfparse/cgi/cgi_graph.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** cgi_graph.h 26 Sep 2005 14:36:33 -0000 1.1.1.1 --- cgi_graph.h 20 Dec 2006 22:57:45 -0000 1.2 *************** *** 3,8 **** * cgi_graph - cgi to call graphs. * ! * Copyright (c) 2004 Ben Clewett (bcl...@pe...) ! * Last Modified: 2004-05-28 * * License: --- 3,8 ---- * cgi_graph - cgi to call graphs. * ! * Copyright (c) 2004 Ben Clewett ! * $Id$ * * License: |
From: Florian G. <re...@us...> - 2006-12-20 22:57:49
|
Update of /cvsroot/perfparse/_perfparse/contrib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27132/contrib Modified Files: Makefile.in Log Message: eleminated perfparse.org domain since we lost it. Index: Makefile.in =================================================================== RCS file: /cvsroot/perfparse/_perfparse/contrib/Makefile.in,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** Makefile.in 2 Dec 2006 21:31:09 -0000 1.17 --- Makefile.in 20 Dec 2006 22:57:46 -0000 1.18 *************** *** 1,3 **** ! # Makefile.in generated by automake 1.9.5 from Makefile.am. # @configure_input@ --- 1,3 ---- ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ |
From: Florian G. <re...@us...> - 2006-12-20 22:57:48
|
Update of /cvsroot/perfparse/_perfparse/libpp_common In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27132/libpp_common Modified Files: Makefile.in Log Message: eleminated perfparse.org domain since we lost it. Index: Makefile.in =================================================================== RCS file: /cvsroot/perfparse/_perfparse/libpp_common/Makefile.in,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** Makefile.in 2 Dec 2006 21:31:10 -0000 1.17 --- Makefile.in 20 Dec 2006 22:57:46 -0000 1.18 *************** *** 1,3 **** ! # Makefile.in generated by automake 1.9.5 from Makefile.am. # @configure_input@ --- 1,3 ---- ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ *************** *** 15,20 **** @SET_MAKE@ - SOURCES = $(libpp_common_la_SOURCES) - srcdir = @srcdir@ top_srcdir = @top_srcdir@ --- 15,18 ---- |
From: Florian G. <re...@us...> - 2006-12-20 22:57:48
|
Update of /cvsroot/perfparse/_perfparse/libnagios_perfdata_parser In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27132/libnagios_perfdata_parser Modified Files: Makefile.in Log Message: eleminated perfparse.org domain since we lost it. Index: Makefile.in =================================================================== RCS file: /cvsroot/perfparse/_perfparse/libnagios_perfdata_parser/Makefile.in,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** Makefile.in 2 Dec 2006 21:31:10 -0000 1.17 --- Makefile.in 20 Dec 2006 22:57:46 -0000 1.18 *************** *** 1,3 **** ! # Makefile.in generated by automake 1.9.5 from Makefile.am. # @configure_input@ --- 1,3 ---- ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ *************** *** 15,20 **** @SET_MAKE@ - SOURCES = $(libnagios_perfdata_parser_la_SOURCES) - srcdir = @srcdir@ top_srcdir = @top_srcdir@ --- 15,18 ---- |
From: Florian G. <re...@us...> - 2006-12-20 22:57:48
|
Update of /cvsroot/perfparse/_perfparse/config In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27132/config Modified Files: Makefile.in Log Message: eleminated perfparse.org domain since we lost it. Index: Makefile.in =================================================================== RCS file: /cvsroot/perfparse/_perfparse/config/Makefile.in,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** Makefile.in 2 Dec 2006 21:31:09 -0000 1.17 --- Makefile.in 20 Dec 2006 22:57:46 -0000 1.18 *************** *** 1,3 **** ! # Makefile.in generated by automake 1.9.5 from Makefile.am. # @configure_input@ --- 1,3 ---- ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ |
From: Florian G. <re...@us...> - 2006-12-20 22:57:48
|
Update of /cvsroot/perfparse/_perfparse/libpp_mysql In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27132/libpp_mysql Modified Files: Makefile.in Log Message: eleminated perfparse.org domain since we lost it. Index: Makefile.in =================================================================== RCS file: /cvsroot/perfparse/_perfparse/libpp_mysql/Makefile.in,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** Makefile.in 2 Dec 2006 21:31:10 -0000 1.17 --- Makefile.in 20 Dec 2006 22:57:46 -0000 1.18 *************** *** 1,3 **** ! # Makefile.in generated by automake 1.9.5 from Makefile.am. # @configure_input@ --- 1,3 ---- ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ *************** *** 15,20 **** @SET_MAKE@ - SOURCES = $(libpp_mysql_la_SOURCES) - srcdir = @srcdir@ top_srcdir = @top_srcdir@ --- 15,18 ---- |
From: Florian G. <re...@us...> - 2006-12-20 22:57:48
|
Update of /cvsroot/perfparse/_perfparse/m4 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27132/m4 Modified Files: Makefile.in Log Message: eleminated perfparse.org domain since we lost it. Index: Makefile.in =================================================================== RCS file: /cvsroot/perfparse/_perfparse/m4/Makefile.in,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** Makefile.in 2 Dec 2006 21:31:10 -0000 1.17 --- Makefile.in 20 Dec 2006 22:57:46 -0000 1.18 *************** *** 1,3 **** ! # Makefile.in generated by automake 1.9.5 from Makefile.am. # @configure_input@ --- 1,3 ---- ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ |
From: Florian G. <re...@us...> - 2006-12-20 22:57:48
|
Update of /cvsroot/perfparse/_perfparse/db_tools In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27132/db_tools Modified Files: Makefile.in check_perfparse_version.c Log Message: eleminated perfparse.org domain since we lost it. Index: Makefile.in =================================================================== RCS file: /cvsroot/perfparse/_perfparse/db_tools/Makefile.in,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** Makefile.in 2 Dec 2006 21:31:09 -0000 1.17 --- Makefile.in 20 Dec 2006 22:57:46 -0000 1.18 *************** *** 1,3 **** ! # Makefile.in generated by automake 1.9.5 from Makefile.am. # @configure_input@ --- 1,3 ---- ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ *************** *** 15,20 **** @SET_MAKE@ - SOURCES = $(check_perfparse_version_SOURCES) $(perfparse_db_purge_SOURCES) $(perfparse_db_tool_SOURCES) - srcdir = @srcdir@ top_srcdir = @top_srcdir@ --- 15,18 ---- Index: check_perfparse_version.c =================================================================== RCS file: /cvsroot/perfparse/_perfparse/db_tools/check_perfparse_version.c,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** check_perfparse_version.c 24 Aug 2006 14:36:45 -0000 1.2 --- check_perfparse_version.c 20 Dec 2006 22:57:46 -0000 1.3 *************** *** 4,8 **** * correct. Uses Nagios check protocol * ! * Copyright (c) 2005 Ben Clewett (bcl...@pe...) * * $Id$ --- 4,8 ---- * correct. Uses Nagios check protocol * ! * Copyright (c) 2005 Ben Clewett * * $Id$ |
From: Florian G. <re...@us...> - 2006-12-20 22:57:48
|
Update of /cvsroot/perfparse/_perfparse/doc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27132/doc Modified Files: install_guide.docbook.xml install_guide.html Log Message: eleminated perfparse.org domain since we lost it. Index: install_guide.html =================================================================== RCS file: /cvsroot/perfparse/_perfparse/doc/install_guide.html,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** install_guide.html 26 Sep 2005 14:36:32 -0000 1.1.1.1 --- install_guide.html 20 Dec 2006 22:57:46 -0000 1.2 *************** *** 54,59 **** CLASS="EMAIL" ><<A ! HREF="mailto:gc...@pe..." ! >gc...@pe...</A >></CODE ><br> --- 54,59 ---- CLASS="EMAIL" ><<A ! HREF="" ! ></A >></CODE ><br> *************** *** 83,88 **** CLASS="EMAIL" ><<A ! HREF="mailto:bcl...@pe..." ! >bcl...@pe...</A >></CODE ><br> --- 83,88 ---- CLASS="EMAIL" ><<A ! HREF="" ! ></A >></CODE ><br> *************** *** 107,112 **** CLASS="EMAIL" ><<A ! HREF="mailto:yme...@pe..." ! >yme...@pe...</A >></CODE ><br> --- 107,112 ---- CLASS="EMAIL" ><<A ! HREF="" ! ></A >></CODE ><br> *************** *** 131,136 **** CLASS="EMAIL" ><<A ! HREF="mailto:fgl...@pe..." ! >fgl...@pe...</A >></CODE ><br> --- 131,136 ---- CLASS="EMAIL" ><<A ! HREF="mailto:fl...@re..." ! >fl...@re...</A >></CODE ><br> *************** *** 2430,2432 **** ></BODY ></HTML ! > \ No newline at end of file --- 2430,2432 ---- ></BODY ></HTML ! > Index: install_guide.docbook.xml =================================================================== RCS file: /cvsroot/perfparse/_perfparse/doc/install_guide.docbook.xml,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** install_guide.docbook.xml 26 Sep 2005 14:36:32 -0000 1.1.1.1 --- install_guide.docbook.xml 20 Dec 2006 22:57:46 -0000 1.2 *************** *** 15,19 **** <affiliation> <address> ! <email>gc...@pe...</email> </address> <contrib> --- 15,19 ---- <affiliation> <address> ! <email></email> </address> <contrib> *************** *** 27,31 **** <affiliation> <address> ! <email>bcl...@pe...</email> </address> </affiliation> --- 27,31 ---- <affiliation> <address> ! <email></email> </address> </affiliation> *************** *** 39,43 **** <affiliation> <address> ! <email>yme...@pe...</email> </address> </affiliation> --- 39,43 ---- <affiliation> <address> ! <email></email> </address> </affiliation> *************** *** 51,55 **** <affiliation> <address> ! <email>fgl...@pe...</email> </address> </affiliation> --- 51,55 ---- <affiliation> <address> ! <email>fl...@re...</email> </address> </affiliation> |
From: Florian G. <re...@us...> - 2006-12-20 22:57:48
|
Update of /cvsroot/perfparse/_perfparse In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27132 Modified Files: Makefile.in TODO aclocal.m4 configure Log Message: eleminated perfparse.org domain since we lost it. Index: aclocal.m4 =================================================================== RCS file: /cvsroot/perfparse/_perfparse/aclocal.m4,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** aclocal.m4 2 Dec 2006 21:31:08 -0000 1.14 --- aclocal.m4 20 Dec 2006 22:57:45 -0000 1.15 *************** *** 1,3 **** ! # generated automatically by aclocal 1.9.5 -*- Autoconf -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, --- 1,3 ---- ! # generated automatically by aclocal 1.9.6 -*- Autoconf -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, *************** *** 14,18 **** # libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- [...2340 lines suppressed...] *** 6005,6008 **** --- 6233,6237 ---- deplibs= wl=$_LT_AC_TAGVAR(lt_prog_compiler_wl, $1) + pic_flag=$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) compiler_flags=-v linker_flags=-v *************** *** 6177,6181 **** # This function is AC_REQUIREd by AC_INIT_AUTOMAKE. AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], ! [AM_AUTOMAKE_VERSION([1.9.5])]) # AM_AUX_DIR_EXPAND -*- Autoconf -*- --- 6406,6410 ---- # This function is AC_REQUIREd by AC_INIT_AUTOMAKE. AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], ! [AM_AUTOMAKE_VERSION([1.9.6])]) # AM_AUX_DIR_EXPAND -*- Autoconf -*- Index: Makefile.in =================================================================== RCS file: /cvsroot/perfparse/_perfparse/Makefile.in,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** Makefile.in 2 Dec 2006 21:31:08 -0000 1.17 --- Makefile.in 20 Dec 2006 22:57:45 -0000 1.18 *************** *** 1,3 **** ! # Makefile.in generated by automake 1.9.5 from Makefile.am. # @configure_input@ --- 1,3 ---- ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ Index: TODO =================================================================== RCS file: /cvsroot/perfparse/_perfparse/TODO,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** TODO 20 Dec 2006 22:04:53 -0000 1.5 --- TODO 20 Dec 2006 22:57:45 -0000 1.6 *************** *** 7,8 **** --- 7,10 ---- - ability to define reports and to use perfparsed or cron to create static reports. - make rrd-like tables work + - make easier interface for deleting or renaming things (hosts, services, metrics) + Index: configure =================================================================== RCS file: /cvsroot/perfparse/_perfparse/configure,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** configure 2 Dec 2006 21:31:08 -0000 1.22 --- configure 20 Dec 2006 22:57:45 -0000 1.23 *************** *** 288,293 **** for cmd in 'sed 50q "$0"' 'sed 20q "$0"' 'sed 10q "$0"' 'sed 2q "$0"' 'echo test'; do # expected sizes: less than 2Kb, 1Kb, 512 bytes, 16 bytes, ... ! if (echo_test_string="`eval $cmd`") 2>/dev/null && ! echo_test_string="`eval $cmd`" && (test "X$echo_test_string" = "X$echo_test_string") 2>/dev/null then --- 288,293 ---- for cmd in 'sed 50q "$0"' 'sed 20q "$0"' 'sed 10q "$0"' 'sed 2q "$0"' 'echo test'; do # expected sizes: less than 2Kb, 1Kb, 512 bytes, 16 bytes, ... ! if (echo_test_string=`eval $cmd`) 2>/dev/null && [...6468 lines suppressed...] # variables and quote the copies for generation of the libtool script. ! for var in echo old_CC old_CFLAGS AR AR_FLAGS EGREP RANLIB LN_S LTCC NM \ SED SHELL STRIP \ libname_spec library_names_spec soname_spec extract_expsyms_cmds \ --- 18221,18225 ---- # careful not to overquote the AC_SUBSTed values. We take copies of the # variables and quote the copies for generation of the libtool script. ! for var in echo old_CC old_CFLAGS AR AR_FLAGS EGREP RANLIB LN_S LTCC LTCFLAGS NM \ SED SHELL STRIP \ libname_spec library_names_spec soname_spec extract_expsyms_cmds \ *************** *** 19386,19389 **** --- 18339,18345 ---- LTCC=$lt_LTCC + # LTCC compiler flags. + LTCFLAGS=$lt_LTCFLAGS + # A language-specific compiler. CC=$lt_compiler_RC |
From: Florian G. <re...@us...> - 2006-12-20 22:57:48
|
Update of /cvsroot/perfparse/_perfparse/images In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27132/images Modified Files: Makefile.in Log Message: eleminated perfparse.org domain since we lost it. Index: Makefile.in =================================================================== RCS file: /cvsroot/perfparse/_perfparse/images/Makefile.in,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** Makefile.in 2 Dec 2006 21:31:09 -0000 1.18 --- Makefile.in 20 Dec 2006 22:57:46 -0000 1.19 *************** *** 1,3 **** ! # Makefile.in generated by automake 1.9.5 from Makefile.am. # @configure_input@ --- 1,3 ---- ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ |
From: Florian G. <re...@us...> - 2006-12-20 22:57:48
|
Update of /cvsroot/perfparse/_perfparse/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27132/scripts Modified Files: Makefile.in Log Message: eleminated perfparse.org domain since we lost it. Index: Makefile.in =================================================================== RCS file: /cvsroot/perfparse/_perfparse/scripts/Makefile.in,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** Makefile.in 2 Dec 2006 21:31:11 -0000 1.17 --- Makefile.in 20 Dec 2006 22:57:47 -0000 1.18 *************** *** 1,3 **** ! # Makefile.in generated by automake 1.9.5 from Makefile.am. # @configure_input@ --- 1,3 ---- ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ |
From: Florian G. <re...@us...> - 2006-12-20 22:08:21
|
Update of /cvsroot/perfparse/_perfparse In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9455 Modified Files: AUTHORS Log Message: eleminated perfparse.org Index: AUTHORS =================================================================== RCS file: /cvsroot/perfparse/_perfparse/AUTHORS,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** AUTHORS 26 Sep 2005 14:36:32 -0000 1.1.1.1 --- AUTHORS 20 Dec 2006 22:08:18 -0000 1.2 *************** *** 4,12 **** - mysql module for perfparse ! Garry W. Cook <gc...@pe...> - docs/HOWTO - some images ! Yves Mettier <yme...@pe...> - autoconf/automake scripts - code cleanup --- 4,12 ---- - mysql module for perfparse ! Garry W. Cook - docs/HOWTO - some images ! Yves Mettier - autoconf/automake scripts - code cleanup *************** *** 18,24 **** - convertion of the install guide to docbook format ! Flo Gleixner <fgl...@pe...> - perfparse php user interface ! - wiki.perfparse.org Tim Wuyts <Tim...@gm...> --- 18,25 ---- - convertion of the install guide to docbook format ! Flo Gleixner <fl...@re...> - perfparse php user interface ! - www.perfparse.de ! - at the moment all work since 0.106.1 Tim Wuyts <Tim...@gm...> *************** *** 26,30 **** - Consultacy on database design. ! Priewasser, Friedrich < fpr...@pe...> - Conversion of PerfParse to use PostgreSQL. --- 27,31 ---- - Consultacy on database design. ! Priewasser, Friedrich - Conversion of PerfParse to use PostgreSQL. |
From: Florian G. <re...@us...> - 2006-12-20 22:04:55
|
Update of /cvsroot/perfparse/_perfparse In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8082 Modified Files: TODO Log Message: new ideas Index: TODO =================================================================== RCS file: /cvsroot/perfparse/_perfparse/TODO,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** TODO 8 Nov 2006 14:19:23 -0000 1.4 --- TODO 20 Dec 2006 22:04:53 -0000 1.5 *************** *** 1,4 **** - make postgres working (scripts and executables) - finish database upgrade program ! - Use storage modules to get data for cgi/phpui similar to saving data. Getting Data should only use first storage module configured. - Integrate ajax framework. Ideas: create tinyurls for graphs via ajax. Make menus more dynamic ... --- 1,8 ---- - make postgres working (scripts and executables) - finish database upgrade program ! - Use storage modules also to get data for cgi/phpui similar to saving data. Getting Data should only use first storage module configured. - Integrate ajax framework. Ideas: create tinyurls for graphs via ajax. Make menus more dynamic ... + - Support for all kind of thresholds (see http://nagiosplug.sourceforge.net/developer-guidelines.html#THRESHOLDFORMAT) + - multiple metrics in one graph + - ability to define reports and to use perfparsed or cron to create static reports. + - make rrd-like tables work |
From: Florian G. <re...@us...> - 2006-12-17 22:11:58
|
Update of /cvsroot/perfparse/_perfparse-phpgui In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25376 Modified Files: Makefile.am Makefile.in Log Message: added new files to automake Index: Makefile.in =================================================================== RCS file: /cvsroot/perfparse/_perfparse-phpgui/Makefile.in,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** Makefile.in 2 Dec 2006 21:31:11 -0000 1.7 --- Makefile.in 17 Dec 2006 22:11:55 -0000 1.8 *************** *** 1,3 **** ! # Makefile.in generated by automake 1.9.5 from Makefile.am. # @configure_input@ --- 1,3 ---- ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ *************** *** 273,276 **** --- 273,278 ---- templates/saved_graphs.tpl.html \ templates/select_host.tpl.html \ + templates/edit_delete_policies.tpl.html \ + templates/edit_host_list.tpl.html \ templates/select_metric.tpl.html \ templates_c/index.php \ Index: Makefile.am =================================================================== RCS file: /cvsroot/perfparse/_perfparse-phpgui/Makefile.am,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Makefile.am 11 Apr 2006 13:58:54 -0000 1.3 --- Makefile.am 17 Dec 2006 22:11:55 -0000 1.4 *************** *** 32,35 **** --- 32,37 ---- templates/saved_graphs.tpl.html \ templates/select_host.tpl.html \ + templates/edit_delete_policies.tpl.html \ + templates/edit_host_list.tpl.html \ templates/select_metric.tpl.html \ templates_c/index.php \ |
From: Florian G. <re...@us...> - 2006-12-16 22:38:58
|
Update of /cvsroot/perfparse/_perfparse/modules In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10433 Modified Files: storage_mysql.c Log Message: schema changes Index: storage_mysql.c =================================================================== RCS file: /cvsroot/perfparse/_perfparse/modules/storage_mysql.c,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** storage_mysql.c 16 Dec 2006 00:00:49 -0000 1.9 --- storage_mysql.c 16 Dec 2006 22:38:55 -0000 1.10 *************** *** 553,557 **** if (rows() == 0) return TRUE; ! if (!result_row[0] || iData(0) > 0) bResult = TRUE; else --- 553,557 ---- if (rows() == 0) return TRUE; ! if (!result_row[0] || iData(0) > 0 || iData(1) > 0) bResult = TRUE; else |