2 * collectd - src/mysql.c
3 * Copyright (C) 2006-2010 Florian octo Forster
4 * Copyright (C) 2008 Mirko Buffoni
5 * Copyright (C) 2009 Doug MacEachern
6 * Copyright (C) 2009 Sebastian tokkee Harl
7 * Copyright (C) 2009 Rodolphe QuiƩdeville
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License as published by the
11 * Free Software Foundation; only version 2 of the License is applicable.
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
23 * Florian octo Forster <octo at collectd.org>
24 * Mirko Buffoni <briareos at eswat.org>
25 * Doug MacEachern <dougm at hyperic.com>
26 * Sebastian tokkee Harl <sh at tokkee.org>
27 * Rodolphe QuiƩdeville <rquiedeville at bearstech.com>
33 #include "configfile.h"
37 #elif defined(HAVE_MYSQL_MYSQL_H)
38 #include <mysql/mysql.h>
41 /* TODO: Understand `Select_*' and possibly do that stuff as well.. */
43 struct mysql_database_s /* {{{ */
59 _Bool slave_io_running;
60 _Bool slave_sql_running;
65 typedef struct mysql_database_s mysql_database_t; /* }}} */
67 static int mysql_read (user_data_t *ud);
69 void mysql_read_default_options(struct st_mysql_options *options,
70 const char *filename,const char *group);
72 static void mysql_database_free (void *arg) /* {{{ */
76 DEBUG ("mysql plugin: mysql_database_free (arg = %p);", arg);
78 db = (mysql_database_t *) arg;
84 mysql_close (db->con);
94 } /* }}} void mysql_database_free */
96 /* Configuration handling functions {{{
99 * <Database "plugin_instance1">
106 static int mysql_config_database (oconfig_item_t *ci) /* {{{ */
108 mysql_database_t *db;
112 if ((ci->values_num != 1)
113 || (ci->values[0].type != OCONFIG_TYPE_STRING))
115 WARNING ("mysql plugin: The `Database' block "
116 "needs exactly one string argument.");
120 db = (mysql_database_t *) malloc (sizeof (*db));
123 ERROR ("mysql plugin: malloc failed.");
126 memset (db, 0, sizeof (*db));
128 /* initialize all the pointers */
138 /* trigger a notification, if it's not running */
139 db->slave_io_running = 1;
140 db->slave_sql_running = 1;
142 status = cf_util_get_string (ci, &db->instance);
148 assert (db->instance != NULL);
150 /* Fill the `mysql_database_t' structure.. */
151 for (i = 0; i < ci->children_num; i++)
153 oconfig_item_t *child = ci->children + i;
155 if (strcasecmp ("Alias", child->key) == 0)
156 status = cf_util_get_string (child, &db->alias);
157 else if (strcasecmp ("Host", child->key) == 0)
158 status = cf_util_get_string (child, &db->host);
159 else if (strcasecmp ("User", child->key) == 0)
160 status = cf_util_get_string (child, &db->user);
161 else if (strcasecmp ("Password", child->key) == 0)
162 status = cf_util_get_string (child, &db->pass);
163 else if (strcasecmp ("Port", child->key) == 0)
165 status = cf_util_get_port_number (child);
172 else if (strcasecmp ("Socket", child->key) == 0)
173 status = cf_util_get_string (child, &db->socket);
174 else if (strcasecmp ("Database", child->key) == 0)
175 status = cf_util_get_string (child, &db->database);
176 else if (strcasecmp ("ConnectTimeout", child->key) == 0)
177 status = cf_util_get_int (child, &db->timeout);
178 else if (strcasecmp ("MasterStats", child->key) == 0)
179 status = cf_util_get_boolean (child, &db->master_stats);
180 else if (strcasecmp ("SlaveStats", child->key) == 0)
181 status = cf_util_get_boolean (child, &db->slave_stats);
182 else if (strcasecmp ("SlaveNotifications", child->key) == 0)
183 status = cf_util_get_boolean (child, &db->slave_notif);
186 WARNING ("mysql plugin: Option `%s' not allowed here.", child->key);
194 /* If all went well, register this database for reading */
198 char cb_name[DATA_MAX_NAME_LEN];
200 DEBUG ("mysql plugin: Registering new read callback: %s",
201 (db->database != NULL) ? db->database : "<default>");
203 memset (&ud, 0, sizeof (ud));
204 ud.data = (void *) db;
205 ud.free_func = mysql_database_free;
207 if (db->instance != NULL)
208 ssnprintf (cb_name, sizeof (cb_name), "mysql-%s",
211 sstrncpy (cb_name, "mysql", sizeof (cb_name));
213 plugin_register_complex_read (/* group = */ NULL, cb_name,
215 /* interval = */ NULL, &ud);
219 mysql_database_free (db);
224 } /* }}} int mysql_config_database */
226 static int mysql_config (oconfig_item_t *ci) /* {{{ */
233 /* Fill the `mysql_database_t' structure.. */
234 for (i = 0; i < ci->children_num; i++)
236 oconfig_item_t *child = ci->children + i;
238 if (strcasecmp ("Database", child->key) == 0)
239 mysql_config_database (child);
241 WARNING ("mysql plugin: Option \"%s\" not allowed here.",
246 } /* }}} int mysql_config */
248 /* }}} End of configuration handling functions */
250 static MYSQL *getconnection (mysql_database_t *db)
252 if (db->is_connected)
256 status = mysql_ping (db->con);
260 WARNING ("mysql plugin: Lost connection to instance \"%s\": %s",
261 db->instance, mysql_error (db->con));
263 db->is_connected = 0;
267 db->con = mysql_init (NULL);
270 ERROR ("mysql plugin: mysql_init failed: %s",
271 mysql_error (db->con));
276 /* Configure TCP connect timeout (default: 0) */
277 db->con->options.connect_timeout = db->timeout;
279 if (mysql_real_connect (db->con, db->host, db->user, db->pass,
280 db->database, db->port, db->socket, 0) == NULL)
282 ERROR ("mysql plugin: Failed to connect to database %s "
284 (db->database != NULL) ? db->database : "<none>",
285 (db->host != NULL) ? db->host : "localhost",
286 mysql_error (db->con));
290 INFO ("mysql plugin: Successfully connected to database %s "
291 "at server %s (server version: %s, protocol version: %d)",
292 (db->database != NULL) ? db->database : "<none>",
293 mysql_get_host_info (db->con),
294 mysql_get_server_info (db->con),
295 mysql_get_proto_info (db->con));
297 db->is_connected = 1;
299 } /* static MYSQL *getconnection (mysql_database_t *db) */
301 static void set_host (mysql_database_t *db, char *buf, size_t buflen)
304 sstrncpy (buf, db->alias, buflen);
305 else if ((db->host == NULL)
306 || (strcmp ("", db->host) == 0)
307 || (strcmp ("127.0.0.1", db->host) == 0)
308 || (strcmp ("localhost", db->host) == 0))
309 sstrncpy (buf, hostname_g, buflen);
311 sstrncpy (buf, db->host, buflen);
312 } /* void set_host */
314 static void submit (const char *type, const char *type_instance,
315 value_t *values, size_t values_len, mysql_database_t *db)
317 value_list_t vl = VALUE_LIST_INIT;
320 vl.values_len = values_len;
322 set_host (db, vl.host, sizeof (vl.host));
324 sstrncpy (vl.plugin, "mysql", sizeof (vl.plugin));
326 /* Assured by "mysql_config_database" */
327 assert (db->instance != NULL);
328 sstrncpy (vl.plugin_instance, db->instance, sizeof (vl.plugin_instance));
330 sstrncpy (vl.type, type, sizeof (vl.type));
331 if (type_instance != NULL)
332 sstrncpy (vl.type_instance, type_instance, sizeof (vl.type_instance));
334 plugin_dispatch_values (&vl);
337 static void counter_submit (const char *type, const char *type_instance,
338 derive_t value, mysql_database_t *db)
342 values[0].derive = value;
343 submit (type, type_instance, values, STATIC_ARRAY_SIZE (values), db);
344 } /* void counter_submit */
346 static void gauge_submit (const char *type, const char *type_instance,
347 gauge_t value, mysql_database_t *db)
351 values[0].gauge = value;
352 submit (type, type_instance, values, STATIC_ARRAY_SIZE (values), db);
353 } /* void gauge_submit */
355 static void derive_submit (const char *type, const char *type_instance,
356 derive_t value, mysql_database_t *db)
360 values[0].derive = value;
361 submit (type, type_instance, values, STATIC_ARRAY_SIZE (values), db);
362 } /* void derive_submit */
364 static void traffic_submit (derive_t rx, derive_t tx, mysql_database_t *db)
368 values[0].derive = rx;
369 values[1].derive = tx;
371 submit ("mysql_octets", NULL, values, STATIC_ARRAY_SIZE (values), db);
372 } /* void traffic_submit */
374 static MYSQL_RES *exec_query (MYSQL *con, const char *query)
378 int query_len = strlen (query);
380 if (mysql_real_query (con, query, query_len))
382 ERROR ("mysql plugin: Failed to execute query: %s",
384 INFO ("mysql plugin: SQL query was: %s", query);
388 res = mysql_store_result (con);
391 ERROR ("mysql plugin: Failed to store query result: %s",
393 INFO ("mysql plugin: SQL query was: %s", query);
400 static int mysql_read_master_stats (mysql_database_t *db, MYSQL *con)
407 unsigned long long position;
409 query = "SHOW MASTER STATUS";
411 res = exec_query (con, query);
415 row = mysql_fetch_row (res);
418 ERROR ("mysql plugin: Failed to get master statistics: "
419 "`%s' did not return any rows.", query);
420 mysql_free_result (res);
424 field_num = mysql_num_fields (res);
427 ERROR ("mysql plugin: Failed to get master statistics: "
428 "`%s' returned less than two columns.", query);
429 mysql_free_result (res);
433 position = atoll (row[1]);
434 counter_submit ("mysql_log_position", "master-bin", position, db);
436 row = mysql_fetch_row (res);
438 WARNING ("mysql plugin: `%s' returned more than one row - "
439 "ignoring further results.", query);
441 mysql_free_result (res);
444 } /* mysql_read_master_stats */
446 static int mysql_read_slave_stats (mysql_database_t *db, MYSQL *con)
454 /* WTF? libmysqlclient does not seem to provide any means to
455 * translate a column name to a column index ... :-/ */
456 const int READ_MASTER_LOG_POS_IDX = 6;
457 const int SLAVE_IO_RUNNING_IDX = 10;
458 const int SLAVE_SQL_RUNNING_IDX = 11;
459 const int EXEC_MASTER_LOG_POS_IDX = 21;
460 const int SECONDS_BEHIND_MASTER_IDX = 32;
462 query = "SHOW SLAVE STATUS";
464 res = exec_query (con, query);
468 row = mysql_fetch_row (res);
471 ERROR ("mysql plugin: Failed to get slave statistics: "
472 "`%s' did not return any rows.", query);
473 mysql_free_result (res);
477 field_num = mysql_num_fields (res);
480 ERROR ("mysql plugin: Failed to get slave statistics: "
481 "`%s' returned less than 33 columns.", query);
482 mysql_free_result (res);
488 unsigned long long counter;
491 counter = atoll (row[READ_MASTER_LOG_POS_IDX]);
492 counter_submit ("mysql_log_position", "slave-read", counter, db);
494 counter = atoll (row[EXEC_MASTER_LOG_POS_IDX]);
495 counter_submit ("mysql_log_position", "slave-exec", counter, db);
497 if (row[SECONDS_BEHIND_MASTER_IDX] != NULL)
499 gauge = atof (row[SECONDS_BEHIND_MASTER_IDX]);
500 gauge_submit ("time_offset", NULL, gauge, db);
506 notification_t n = { 0, cdtime (), "", "",
507 "mysql", "", "time_offset", "", NULL };
511 io = row[SLAVE_IO_RUNNING_IDX];
512 sql = row[SLAVE_SQL_RUNNING_IDX];
514 set_host (db, n.host, sizeof (n.host));
516 /* Assured by "mysql_config_database" */
517 assert (db->instance != NULL);
518 sstrncpy (n.plugin_instance, db->instance, sizeof (n.plugin_instance));
520 if (((io == NULL) || (strcasecmp (io, "yes") != 0))
521 && (db->slave_io_running))
523 n.severity = NOTIF_WARNING;
524 ssnprintf (n.message, sizeof (n.message),
525 "slave I/O thread not started or not connected to master");
526 plugin_dispatch_notification (&n);
527 db->slave_io_running = 0;
529 else if (((io != NULL) && (strcasecmp (io, "yes") == 0))
530 && (! db->slave_io_running))
532 n.severity = NOTIF_OKAY;
533 ssnprintf (n.message, sizeof (n.message),
534 "slave I/O thread started and connected to master");
535 plugin_dispatch_notification (&n);
536 db->slave_io_running = 1;
539 if (((sql == NULL) || (strcasecmp (sql, "yes") != 0))
540 && (db->slave_sql_running))
542 n.severity = NOTIF_WARNING;
543 ssnprintf (n.message, sizeof (n.message),
544 "slave SQL thread not started");
545 plugin_dispatch_notification (&n);
546 db->slave_sql_running = 0;
548 else if (((sql != NULL) && (strcasecmp (sql, "yes") == 0))
549 && (! db->slave_sql_running))
551 n.severity = NOTIF_OKAY;
552 ssnprintf (n.message, sizeof (n.message),
553 "slave SQL thread started");
554 plugin_dispatch_notification (&n);
555 db->slave_sql_running = 1;
559 row = mysql_fetch_row (res);
561 WARNING ("mysql plugin: `%s' returned more than one row - "
562 "ignoring further results.", query);
564 mysql_free_result (res);
567 } /* mysql_read_slave_stats */
569 static int mysql_read (user_data_t *ud)
571 mysql_database_t *db;
577 derive_t qcache_hits = 0;
578 derive_t qcache_inserts = 0;
579 derive_t qcache_not_cached = 0;
580 derive_t qcache_lowmem_prunes = 0;
581 gauge_t qcache_queries_in_cache = NAN;
583 gauge_t threads_running = NAN;
584 gauge_t threads_connected = NAN;
585 gauge_t threads_cached = NAN;
586 derive_t threads_created = 0;
588 unsigned long long traffic_incoming = 0ULL;
589 unsigned long long traffic_outgoing = 0ULL;
591 if ((ud == NULL) || (ud->data == NULL))
593 ERROR ("mysql plugin: mysql_database_read: Invalid user data.");
597 db = (mysql_database_t *) ud->data;
599 /* An error message will have been printed in this case */
600 if ((con = getconnection (db)) == NULL)
603 query = "SHOW STATUS";
604 if (mysql_get_server_version (con) >= 50002)
605 query = "SHOW GLOBAL STATUS";
607 res = exec_query (con, query);
611 while ((row = mysql_fetch_row (res)))
614 unsigned long long val;
617 val = atoll (row[1]);
619 if (strncmp (key, "Com_",
620 strlen ("Com_")) == 0)
625 /* Ignore `prepared statements' */
626 if (strncmp (key, "Com_stmt_", strlen ("Com_stmt_")) != 0)
627 counter_submit ("mysql_commands",
628 key + strlen ("Com_"),
631 else if (strncmp (key, "Handler_",
632 strlen ("Handler_")) == 0)
637 counter_submit ("mysql_handler",
638 key + strlen ("Handler_"),
641 else if (strncmp (key, "Qcache_",
642 strlen ("Qcache_")) == 0)
644 if (strcmp (key, "Qcache_hits") == 0)
645 qcache_hits = (derive_t) val;
646 else if (strcmp (key, "Qcache_inserts") == 0)
647 qcache_inserts = (derive_t) val;
648 else if (strcmp (key, "Qcache_not_cached") == 0)
649 qcache_not_cached = (derive_t) val;
650 else if (strcmp (key, "Qcache_lowmem_prunes") == 0)
651 qcache_lowmem_prunes = (derive_t) val;
652 else if (strcmp (key, "Qcache_queries_in_cache") == 0)
653 qcache_queries_in_cache = (gauge_t) val;
655 else if (strncmp (key, "Bytes_",
656 strlen ("Bytes_")) == 0)
658 if (strcmp (key, "Bytes_received") == 0)
659 traffic_incoming += val;
660 else if (strcmp (key, "Bytes_sent") == 0)
661 traffic_outgoing += val;
663 else if (strncmp (key, "Threads_",
664 strlen ("Threads_")) == 0)
666 if (strcmp (key, "Threads_running") == 0)
667 threads_running = (gauge_t) val;
668 else if (strcmp (key, "Threads_connected") == 0)
669 threads_connected = (gauge_t) val;
670 else if (strcmp (key, "Threads_cached") == 0)
671 threads_cached = (gauge_t) val;
672 else if (strcmp (key, "Threads_created") == 0)
673 threads_created = (derive_t) val;
675 else if (strncmp (key, "Table_locks_",
676 strlen ("Table_locks_")) == 0)
678 counter_submit ("mysql_locks",
679 key + strlen ("Table_locks_"),
683 mysql_free_result (res); res = NULL;
685 if ((qcache_hits != 0)
686 || (qcache_inserts != 0)
687 || (qcache_not_cached != 0)
688 || (qcache_lowmem_prunes != 0))
690 derive_submit ("cache_result", "qcache-hits",
692 derive_submit ("cache_result", "qcache-inserts",
694 derive_submit ("cache_result", "qcache-not_cached",
695 qcache_not_cached, db);
696 derive_submit ("cache_result", "qcache-prunes",
697 qcache_lowmem_prunes, db);
699 gauge_submit ("cache_size", "qcache",
700 qcache_queries_in_cache, db);
703 if (threads_created != 0)
705 gauge_submit ("threads", "running",
706 threads_running, db);
707 gauge_submit ("threads", "connected",
708 threads_connected, db);
709 gauge_submit ("threads", "cached",
712 derive_submit ("total_threads", "created",
713 threads_created, db);
716 traffic_submit (traffic_incoming, traffic_outgoing, db);
718 if (db->master_stats)
719 mysql_read_master_stats (db, con);
721 if ((db->slave_stats) || (db->slave_notif))
722 mysql_read_slave_stats (db, con);
725 } /* int mysql_read */
727 void module_register (void)
729 plugin_register_complex_config ("mysql", mysql_config);
730 } /* void module_register */