Update of /cvsroot/perfparse/_perfparse/scripts
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18924/scripts
Modified Files:
Makefile.in mysql_create.sql
Log Message:
convert perfdata_service_metric table
Index: Makefile.in
===================================================================
RCS file: /cvsroot/perfparse/_perfparse/scripts/Makefile.in,v
retrieving revision 1.20
retrieving revision 1.21
diff -C2 -d -r1.20 -r1.21
*** Makefile.in 10 Apr 2007 14:36:49 -0000 1.20
--- Makefile.in 14 Apr 2007 00:34:59 -0000 1.21
***************
*** 47,60 ****
$(top_srcdir)/m4/intmax.m4 $(top_srcdir)/m4/inttypes-pri.m4 \
$(top_srcdir)/m4/inttypes.m4 $(top_srcdir)/m4/inttypes_h.m4 \
! $(top_srcdir)/m4/lcmessage.m4 $(top_srcdir)/m4/lib-ld.m4 \
! $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \
! $(top_srcdir)/m4/longdouble.m4 $(top_srcdir)/m4/longlong.m4 \
! $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/po.m4 \
! $(top_srcdir)/m4/printf-posix.m4 $(top_srcdir)/m4/progtest.m4 \
! $(top_srcdir)/m4/signed.m4 $(top_srcdir)/m4/size_max.m4 \
! $(top_srcdir)/m4/stdint_h.m4 $(top_srcdir)/m4/uintmax_t.m4 \
! $(top_srcdir)/m4/ulonglong.m4 $(top_srcdir)/m4/wchar_t.m4 \
! $(top_srcdir)/m4/wint_t.m4 $(top_srcdir)/m4/xsize.m4 \
! $(top_srcdir)/configure.ac
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
$(ACLOCAL_M4)
--- 47,60 ----
$(top_srcdir)/m4/intmax.m4 $(top_srcdir)/m4/inttypes-pri.m4 \
$(top_srcdir)/m4/inttypes.m4 $(top_srcdir)/m4/inttypes_h.m4 \
! $(top_srcdir)/m4/isc-posix.m4 $(top_srcdir)/m4/lcmessage.m4 \
! $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \
! $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/longdouble.m4 \
! $(top_srcdir)/m4/longlong.m4 $(top_srcdir)/m4/nls.m4 \
! $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/printf-posix.m4 \
! $(top_srcdir)/m4/progtest.m4 $(top_srcdir)/m4/signed.m4 \
! $(top_srcdir)/m4/size_max.m4 $(top_srcdir)/m4/stdint_h.m4 \
! $(top_srcdir)/m4/uintmax_t.m4 $(top_srcdir)/m4/ulonglong.m4 \
! $(top_srcdir)/m4/wchar_t.m4 $(top_srcdir)/m4/wint_t.m4 \
! $(top_srcdir)/m4/xsize.m4 $(top_srcdir)/configure.ac
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
$(ACLOCAL_M4)
***************
*** 121,124 ****
--- 121,125 ----
GMSGFMT = @GMSGFMT@
GOBJECT_QUERY = @GOBJECT_QUERY@
+ GREP = @GREP@
HAVE_ASPRINTF = @HAVE_ASPRINTF@
HAVE_POSIX_PRINTF = @HAVE_POSIX_PRINTF@
***************
*** 184,193 ****
ZLIB_CFLAGS = @ZLIB_CFLAGS@
ZLIB_LIBS = @ZLIB_LIBS@
- ac_ct_AR = @ac_ct_AR@
ac_ct_CC = @ac_ct_CC@
ac_ct_CXX = @ac_ct_CXX@
ac_ct_F77 = @ac_ct_F77@
- ac_ct_RANLIB = @ac_ct_RANLIB@
- ac_ct_STRIP = @ac_ct_STRIP@
am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
--- 185,191 ----
***************
*** 208,211 ****
--- 206,212 ----
cgidir = @cgidir@
datadir = @datadir@
+ datarootdir = @datarootdir@
+ docdir = @docdir@
+ dvidir = @dvidir@
exec_prefix = @exec_prefix@
host = @host@
***************
*** 214,217 ****
--- 215,219 ----
host_os = @host_os@
host_vendor = @host_vendor@
+ htmldir = @htmldir@
includedir = @includedir@
infodir = @infodir@
***************
*** 219,229 ****
--- 221,234 ----
libdir = @libdir@
libexecdir = @libexecdir@
+ localedir = @localedir@
localstatedir = @localstatedir@
mandir = @mandir@
mkdir_p = @mkdir_p@
oldincludedir = @oldincludedir@
+ pdfdir = @pdfdir@
phpuidir = @phpuidir@
prefix = @prefix@
program_transform_name = @program_transform_name@
+ psdir = @psdir@
sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
Index: mysql_create.sql
===================================================================
RCS file: /cvsroot/perfparse/_perfparse/scripts/mysql_create.sql,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** mysql_create.sql 10 Apr 2007 14:36:49 -0000 1.14
--- mysql_create.sql 14 Apr 2007 00:34:59 -0000 1.15
***************
*** 123,127 ****
CREATE TABLE IF NOT EXISTS perfdata_service_metric (
! metric_id INT PRIMARY KEY,
service_id INT,
metric VARCHAR(75) NOT NULL,
--- 123,127 ----
CREATE TABLE IF NOT EXISTS perfdata_service_metric (
! metric_id INT AUTO_INCREMENT PRIMARY KEY,
service_id INT,
metric VARCHAR(75) NOT NULL,
|