[nagiosplug] check_mysql: Connections should have been defined ...
Nagios Plugin Development
nagios-plugins at users.sourceforge.net
Sun Aug 18 18:50:19 CEST 2013
Module: nagiosplug
Branch: master
Commit: b2568b85affc77658d71f2165e834d0a99705199
Author: Tim Laszlo <tim.laszlo at gmail.com>
Committer: Holger Weiss <holger at zedat.fu-berlin.de>
Date: Tue Nov 20 13:13:16 2012 -0600
URL: http://nagiosplug.git.sf.net/git/gitweb.cgi?p=nagiosplug/nagiosplug;a=commit;h=b2568b8
check_mysql: Connections should have been defined as a counter
---
plugins/check_mysql.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
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",
More information about the Commits
mailing list