From: Florian G. <re...@us...> - 2007-04-15 23:39:54
|
Update of /cvsroot/perfparse/_perfparse In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3149 Modified Files: TODO configure configure.ac Log Message: convert service_bin table. Eleminate DATETIME database columns. Converted to INT for Unix Timestamps. Index: configure =================================================================== RCS file: /cvsroot/perfparse/_perfparse/configure,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** configure 14 Apr 2007 00:34:58 -0000 1.25 --- configure 15 Apr 2007 23:39:52 -0000 1.26 *************** *** 1561,1565 **** --with-cgidir=DIR cgi dir (default=sbindir) --with-phpuidir=DIR PHP webinterface dir (default=sbindir) ! --with-apache-user=username Apache user for installation (default=nobody) --with-imagedir=DIR images dir (default=datadir/perfparse/images) --with-http_image_path=DIR HTTP image path (default=/nagios/images) --- 1561,1565 ---- --with-cgidir=DIR cgi dir (default=sbindir) --with-phpuidir=DIR PHP webinterface dir (default=sbindir) ! --with-apacheuser=username Apache user for installation (default=nobody) --with-imagedir=DIR images dir (default=datadir/perfparse/images) --with-http_image_path=DIR HTTP image path (default=/nagios/images) Index: configure.ac =================================================================== RCS file: /cvsroot/perfparse/_perfparse/configure.ac,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 *** configure.ac 11 Apr 2007 08:24:29 -0000 1.23 --- configure.ac 15 Apr 2007 23:39:52 -0000 1.24 *************** *** 336,340 **** INST_APACHE_USER="nobody" AC_ARG_WITH(apacheuser, ! [ --with-apache-user=username Apache user for installation (default=nobody)],[ if test "$withval" != "no" -a "$withval" != "yes"; then INST_APACHE_USER=$withval --- 336,340 ---- INST_APACHE_USER="nobody" AC_ARG_WITH(apacheuser, ! [ --with-apacheuser=username Apache user for installation (default=nobody)],[ if test "$withval" != "no" -a "$withval" != "yes"; then INST_APACHE_USER=$withval Index: TODO =================================================================== RCS file: /cvsroot/perfparse/_perfparse/TODO,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** TODO 21 Dec 2006 13:38:32 -0000 1.7 --- TODO 15 Apr 2007 23:39:52 -0000 1.8 *************** *** 1,4 **** --- 1,6 ---- - make postgres working (scripts and executables) - finish database upgrade program + - check that DATETIME is eleminated and check if all code works with unix ts + (especially ctime fields in database) - 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 ... *************** *** 9,10 **** --- 11,14 ---- - make easier interface for deleting or renaming things (hosts, services, metrics) - support for logarithmic scales + - update documentation - remove install options that are outdated + - add option to deliver data via NEB module |