From b2568b85affc77658d71f2165e834d0a99705199 Mon Sep 17 00:00:00 2001 From: Tim Laszlo Date: Tue, 20 Nov 2012 13:13:16 -0600 Subject: check_mysql: Connections should have been defined as a counter diff --git a/plugins/check_mysql.c b/plugins/check_mysql.c index 8d1f99a..11d4a2f 100644 --- a/plugins/check_mysql.c +++ b/plugins/check_mysql.c @@ -62,9 +62,8 @@ int verbose = 0; static double warning_time = 0; static double critical_time = 0; -#define LENGTH_METRIC_UNIT 7 +#define LENGTH_METRIC_UNIT 6 static const char *metric_unit[LENGTH_METRIC_UNIT] = { - "Connections", "Open_files", "Open_tables", "Qcache_free_memory", @@ -73,8 +72,9 @@ static const char *metric_unit[LENGTH_METRIC_UNIT] = { "Threads_running" }; -#define LENGTH_METRIC_COUNTER 8 +#define LENGTH_METRIC_COUNTER 9 static const char *metric_counter[LENGTH_METRIC_COUNTER] = { + "Connections", "Qcache_hits", "Qcache_inserts", "Qcache_lowmem_prunes", -- cgit v0.10-9-g596f