mysql plugin: Added support for "slave notifications".
[collectd.git] / src / mysql.c
1 /**
2  * collectd - src/mysql.c
3  * Copyright (C) 2006-2009  Florian octo Forster
4  * Copyright (C) 2009  Doug MacEachern
5  * Copyright (C) 2009  Sebastian tokkee Harl
6  *
7  * This program is free software; you can redistribute it and/or modify it
8  * under the terms of the GNU General Public License as published by the
9  * Free Software Foundation; only version 2 of the License is applicable.
10  *
11  * This program is distributed in the hope that it will be useful, but
12  * WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License along
17  * with this program; if not, write to the Free Software Foundation, Inc.,
18  * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
19  *
20  * Authors:
21  *   Florian octo Forster <octo at verplant.org>
22  *   Mirko Buffoni <briareos at eswat.org>
23  *   Doug MacEachern <dougm at hyperic.com>
24  *   Sebastian tokkee Harl <sh at tokkee.org>
25  **/
26
27 #include "collectd.h"
28 #include "common.h"
29 #include "plugin.h"
30 #include "configfile.h"
31
32 #ifdef HAVE_MYSQL_H
33 #include <mysql.h>
34 #elif defined(HAVE_MYSQL_MYSQL_H)
35 #include <mysql/mysql.h>
36 #endif
37
38 /* TODO: Understand `Select_*' and possibly do that stuff as well.. */
39
40 struct mysql_database_s /* {{{ */
41 {
42         /* instance == NULL  =>  legacy mode */
43         char *instance;
44         char *host;
45         char *user;
46         char *pass;
47         char *database;
48         char *socket;
49         int   port;
50
51         int   master_stats;
52         int   slave_stats;
53
54         int   slave_notif;
55         int   slave_io_running;
56         int   slave_sql_running;
57
58         MYSQL *con;
59         int    state;
60 };
61 typedef struct mysql_database_s mysql_database_t; /* }}} */
62
63 static int mysql_read (user_data_t *ud);
64
65 static void mysql_database_free (void *arg) /* {{{ */
66 {
67         mysql_database_t *db;
68
69         DEBUG ("mysql plugin: mysql_database_free (arg = %p);", arg);
70
71         db = (mysql_database_t *) arg;
72
73         if (db == NULL)
74                 return;
75
76         if (db->con != NULL)
77                 mysql_close (db->con);
78
79         sfree (db->host);
80         sfree (db->user);
81         sfree (db->pass);
82         sfree (db->socket);
83         sfree (db->instance);
84         sfree (db->database);
85         sfree (db);
86 } /* }}} void mysql_database_free */
87
88 /* Configuration handling functions {{{
89  *
90  * <Plugin mysql>
91  *   <Database "plugin_instance1">
92  *     Host "localhost"
93  *     Port 22000
94  *     ...
95  *   </Database>
96  * </Plugin>
97  */
98
99 static int mysql_config_set_string (char **ret_string, /* {{{ */
100                                     oconfig_item_t *ci)
101 {
102         char *string;
103
104         if ((ci->values_num != 1)
105             || (ci->values[0].type != OCONFIG_TYPE_STRING))
106         {
107                 WARNING ("mysql plugin: The `%s' config option "
108                          "needs exactly one string argument.", ci->key);
109                 return (-1);
110         }
111
112         string = strdup (ci->values[0].value.string);
113         if (string == NULL)
114         {
115                 ERROR ("mysql plugin: strdup failed.");
116                 return (-1);
117         }
118
119         if (*ret_string != NULL)
120                 free (*ret_string);
121         *ret_string = string;
122
123         return (0);
124 } /* }}} int mysql_config_set_string */
125
126 static int mysql_config_set_int (int *ret_int, /* {{{ */
127                                  oconfig_item_t *ci)
128 {
129         if ((ci->values_num != 1)
130             || (ci->values[0].type != OCONFIG_TYPE_NUMBER))
131         {
132                 WARNING ("mysql plugin: The `%s' config option "
133                          "needs exactly one string argument.", ci->key);
134                 return (-1);
135         }
136
137         *ret_int = ci->values[0].value.number;
138
139         return (0);
140 } /* }}} int mysql_config_set_int */
141
142 static int mysql_config_set_boolean (int *ret_boolean, /* {{{ */
143                                 oconfig_item_t *ci)
144 {
145         int status = 0;
146
147         if (ci->values_num != 1)
148                 status = -1;
149
150         if (status == 0)
151         {
152                 if (ci->values[0].type == OCONFIG_TYPE_BOOLEAN)
153                         *ret_boolean = ci->values[0].value.boolean;
154                 else if (ci->values[0].type == OCONFIG_TYPE_STRING)
155                 {
156                         if (IS_TRUE (ci->values[0].value.string))
157                                 *ret_boolean = 1;
158                         else if (IS_FALSE (ci->values[0].value.string))
159                                 *ret_boolean = 0;
160                         else
161                                 status = -1;
162                 }
163                 else
164                         status = -1;
165         }
166
167         if (status != 0)
168         {
169                 WARNING ("mysql plugin: The `%s' config option "
170                         "needs exactly one boolean argument.", ci->key);
171                 return (-1);
172         }
173         return (0);
174 } /* }}} mysql_config_set_boolean */
175
176 static int mysql_config (oconfig_item_t *ci) /* {{{ */
177 {
178         mysql_database_t *db;
179         int plugin_block;
180         int status = 0;
181         int i;
182
183         if ((ci->values_num != 1)
184             || (ci->values[0].type != OCONFIG_TYPE_STRING))
185         {
186                 WARNING ("mysql plugin: The `Database' block "
187                          "needs exactly one string argument.");
188                 return (-1);
189         }
190
191         db = (mysql_database_t *) malloc (sizeof (*db));
192         if (db == NULL)
193         {
194                 ERROR ("mysql plugin: malloc failed.");
195                 return (-1);
196         }
197         memset (db, 0, sizeof (*db));
198
199         /* initialize all the pointers */
200         db->host     = NULL;
201         db->user     = NULL;
202         db->pass     = NULL;
203         db->database = NULL;
204         db->socket   = NULL;
205         db->con      = NULL;
206
207         /* trigger a notification, if it's not running */
208         db->slave_io_running  = 1;
209         db->slave_sql_running = 1;
210
211         plugin_block = 1;
212         if (strcasecmp ("Plugin", ci->key) == 0)
213         {
214                 db->instance = NULL;
215         }
216         else if (strcasecmp ("Database", ci->key) == 0)
217         {
218                 plugin_block = 0;
219                 status = mysql_config_set_string (&db->instance, ci);
220                 if (status != 0)
221                 {
222                         sfree (db);
223                         return (status);
224                 }
225                 assert (db->instance != NULL);
226                 db->database = strdup (db->instance);
227         }
228         else
229         {
230                 ERROR ("mysql plugin: mysql_config: "
231                                 "Invalid key: %s", ci->key);
232                 return (-1);
233         }
234
235         /* Fill the `mysql_database_t' structure.. */
236         for (i = 0; i < ci->children_num; i++)
237         {
238                 oconfig_item_t *child = ci->children + i;
239
240                 if (strcasecmp ("Host", child->key) == 0)
241                         status = mysql_config_set_string (&db->host, child);
242                 else if (strcasecmp ("User", child->key) == 0)
243                         status = mysql_config_set_string (&db->user, child);
244                 else if (strcasecmp ("Password", child->key) == 0)
245                         status = mysql_config_set_string (&db->pass, child);
246                 else if (strcasecmp ("Port", child->key) == 0)
247                         status = mysql_config_set_int (&db->port, child);
248                 else if (strcasecmp ("Socket", child->key) == 0)
249                         status = mysql_config_set_string (&db->socket, child);
250                 /* Check if we're currently handling the `Plugin' block. If so,
251                  * handle `Database' _blocks_, too. */
252                 else if ((plugin_block != 0)
253                                 && (strcasecmp ("Database", child->key) == 0)
254                                 && (child->children != NULL))
255                 {
256                         /* If `plugin_block > 1', there has been at least one
257                          * `Database' block */
258                         plugin_block++;
259                         status = mysql_config (child);
260                 }
261                 /* Now handle ordinary `Database' options (without children) */
262                 else if ((strcasecmp ("Database", child->key) == 0)
263                                 && (child->children == NULL))
264                         status = mysql_config_set_string (&db->database, child);
265                 else if (strcasecmp ("MasterStats", child->key) == 0)
266                         status = mysql_config_set_boolean (&db->master_stats, child);
267                 else if (strcasecmp ("SlaveStats", child->key) == 0)
268                         status = mysql_config_set_boolean (&db->slave_stats, child);
269                 else if (strcasecmp ("SlaveNotifications", child->key) == 0)
270                         status = mysql_config_set_boolean (&db->slave_notif, child);
271                 else
272                 {
273                         WARNING ("mysql plugin: Option `%s' not allowed here.", child->key);
274                         status = -1;
275                 }
276
277                 if (status != 0)
278                         break;
279         }
280
281         /* Check if there were any `Database' blocks. */
282         if (plugin_block > 1)
283         {
284                 /* There were connection blocks. Don't use any legacy stuff. */
285                 if ((db->host != NULL)
286                         || (db->user != NULL)
287                         || (db->pass != NULL)
288                         || (db->database != NULL)
289                         || (db->socket != NULL)
290                         || (db->port != 0))
291                 {
292                         WARNING ("mysql plugin: At least one <Database> "
293                                         "block has been found. The legacy "
294                                         "configuration will be ignored.");
295                 }
296                 mysql_database_free (db);
297                 return (0);
298         }
299         else if (plugin_block != 0)
300         {
301                 WARNING ("mysql plugin: You're using the legacy "
302                                 "configuration options. Please consider "
303                                 "updating your configuration!");
304         }
305
306         /* Check that all necessary options have been given. */
307         while (status == 0)
308         {
309                 /* Zero is allowed and automatically handled by
310                  * `mysql_real_connect'. */
311                 if ((db->port < 0) || (db->port > 65535))
312                 {
313                         ERROR ("mysql plugin: Database %s: Port number out "
314                                         "of range: %i",
315                                         (db->instance != NULL)
316                                         ? db->instance
317                                         : "<legacy>",
318                                         db->port);
319                         status = -1;
320                 }
321                 if (db->database == NULL)
322                 {
323                         ERROR ("mysql plugin: No `Database' configured");
324                         status = -1;
325                 }
326                 break;
327         } /* while (status == 0) */
328
329         /* If all went well, register this database for reading */
330         if (status == 0)
331         {
332                 user_data_t ud;
333                 char cb_name[DATA_MAX_NAME_LEN];
334
335                 DEBUG ("mysql plugin: Registering new read callback: %s", db->database);
336
337                 memset (&ud, 0, sizeof (ud));
338                 ud.data = (void *) db;
339                 ud.free_func = mysql_database_free;
340
341                 if (db->database != NULL)
342                         ssnprintf (cb_name, sizeof (cb_name), "mysql-%s",
343                                         db->database);
344                 else
345                         sstrncpy (cb_name, "mysql", sizeof (cb_name));
346
347                 plugin_register_complex_read (cb_name, mysql_read,
348                                               /* interval = */ NULL, &ud);
349         }
350         else
351         {
352                 mysql_database_free (db);
353                 return (-1);
354         }
355
356         return (0);
357 } /* }}} int mysql_config */
358
359 /* }}} End of configuration handling functions */
360
361 static MYSQL *getconnection (mysql_database_t *db)
362 {
363         if (db->state != 0)
364         {
365                 int err;
366                 if ((err = mysql_ping (db->con)) != 0)
367                 {
368                         WARNING ("mysql_ping failed: %s", mysql_error (db->con));
369                         db->state = 0;
370                 }
371                 else
372                 {
373                         db->state = 1;
374                         return (db->con);
375                 }
376         }
377
378         if ((db->con = mysql_init (db->con)) == NULL)
379         {
380                 ERROR ("mysql_init failed: %s", mysql_error (db->con));
381                 db->state = 0;
382                 return (NULL);
383         }
384
385         if (mysql_real_connect (db->con, db->host, db->user, db->pass,
386                                 db->database, db->port, db->socket, 0) == NULL)
387         {
388                 ERROR ("mysql_real_connect failed: %s", mysql_error (db->con));
389                 db->state = 0;
390                 return (NULL);
391         }
392         else
393         {
394                 db->state = 1;
395                 return (db->con);
396         }
397 } /* static MYSQL *getconnection (mysql_database_t *db) */
398
399 static void set_host (mysql_database_t *db, char *buf, size_t buflen)
400 {
401         /* XXX legacy mode - use hostname_g */
402         if (db->instance == NULL)
403                 sstrncpy (buf, hostname_g, buflen);
404         else
405         {
406                 if ((db->host == NULL)
407                                 || (strcmp ("", db->host) == 0)
408                                 || (strcmp ("localhost", db->host) == 0))
409                         sstrncpy (buf, hostname_g, buflen);
410                 else
411                         sstrncpy (buf, db->host, buflen);
412         }
413 }
414
415 static void set_plugin_instance (mysql_database_t *db,
416                 char *buf, size_t buflen)
417 {
418         /* XXX legacy mode - no plugin_instance */
419         if (db->instance == NULL)
420                 sstrncpy (buf, "", buflen);
421         else
422                 sstrncpy (buf, db->instance, buflen);
423 }
424
425 static void submit (const char *type, const char *type_instance,
426                 value_t *values, size_t values_len, mysql_database_t *db)
427 {
428         value_list_t vl = VALUE_LIST_INIT;
429
430         vl.values     = values;
431         vl.values_len = values_len;
432
433         set_host (db, vl.host, sizeof (vl.host));
434
435         sstrncpy (vl.plugin, "mysql", sizeof (vl.plugin));
436         set_plugin_instance (db, vl.plugin_instance, sizeof (vl.plugin_instance));
437
438         sstrncpy (vl.type, type, sizeof (vl.type));
439         if (type_instance != NULL)
440                 sstrncpy (vl.type_instance, type_instance, sizeof (vl.type_instance));
441
442         plugin_dispatch_values (&vl);
443 } /* submit */
444
445 static void counter_submit (const char *type, const char *type_instance,
446                 counter_t value, mysql_database_t *db)
447 {
448         value_t values[1];
449
450         values[0].counter = value;
451         submit (type, type_instance, values, STATIC_ARRAY_SIZE (values), db);
452 } /* void counter_submit */
453
454 static void gauge_submit (const char *type, const char *type_instance,
455                 gauge_t value, mysql_database_t *db)
456 {
457         value_t values[1];
458
459         values[0].gauge = value;
460         submit (type, type_instance, values, STATIC_ARRAY_SIZE (values), db);
461 } /* void gauge_submit */
462
463 static void qcache_submit (counter_t hits, counter_t inserts,
464                 counter_t not_cached, counter_t lowmem_prunes,
465                 gauge_t queries_in_cache, mysql_database_t *db)
466 {
467         value_t values[5];
468
469         values[0].counter = hits;
470         values[1].counter = inserts;
471         values[2].counter = not_cached;
472         values[3].counter = lowmem_prunes;
473         values[4].gauge   = queries_in_cache;
474
475         submit ("mysql_qcache", NULL, values, STATIC_ARRAY_SIZE (values), db);
476 } /* void qcache_submit */
477
478 static void threads_submit (gauge_t running, gauge_t connected, gauge_t cached,
479                 counter_t created, mysql_database_t *db)
480 {
481         value_t values[4];
482
483         values[0].gauge   = running;
484         values[1].gauge   = connected;
485         values[2].gauge   = cached;
486         values[3].counter = created;
487
488         submit ("mysql_threads", NULL, values, STATIC_ARRAY_SIZE (values), db);
489 } /* void threads_submit */
490
491 static void traffic_submit (counter_t rx, counter_t tx, mysql_database_t *db)
492 {
493         value_t values[2];
494
495         values[0].counter = rx;
496         values[1].counter = tx;
497
498         submit ("mysql_octets", NULL, values, STATIC_ARRAY_SIZE (values), db);
499 } /* void traffic_submit */
500
501 static MYSQL_RES *exec_query (MYSQL *con, const char *query)
502 {
503         MYSQL_RES *res;
504
505         int query_len = strlen (query);
506
507         if (mysql_real_query (con, query, query_len))
508         {
509                 ERROR ("mysql plugin: Failed to execute query: %s",
510                                 mysql_error (con));
511                 INFO ("mysql plugin: SQL query was: %s", query);
512                 return (NULL);
513         }
514
515         res = mysql_store_result (con);
516         if (res == NULL)
517         {
518                 ERROR ("mysql plugin: Failed to store query result: %s",
519                                 mysql_error (con));
520                 INFO ("mysql plugin: SQL query was: %s", query);
521                 return (NULL);
522         }
523
524         return (res);
525 } /* exec_query */
526
527 static int mysql_read_master_stats (mysql_database_t *db, MYSQL *con)
528 {
529         MYSQL_RES *res;
530         MYSQL_ROW  row;
531
532         char *query;
533         int   field_num;
534         unsigned long long position;
535
536         query = "SHOW MASTER STATUS";
537
538         res = exec_query (con, query);
539         if (res == NULL)
540                 return (-1);
541
542         row = mysql_fetch_row (res);
543         if (row == NULL)
544         {
545                 ERROR ("mysql plugin: Failed to get master statistics: "
546                                 "`%s' did not return any rows.", query);
547                 return (-1);
548         }
549
550         field_num = mysql_num_fields (res);
551         if (field_num < 2)
552         {
553                 ERROR ("mysql plugin: Failed to get master statistics: "
554                                 "`%s' returned less than two columns.", query);
555                 return (-1);
556         }
557
558         position = atoll (row[1]);
559         counter_submit ("mysql_log_position", "master-bin", position, db);
560
561         row = mysql_fetch_row (res);
562         if (row != NULL)
563                 WARNING ("mysql plugin: `%s' returned more than one row - "
564                                 "ignoring further results.", query);
565
566         mysql_free_result (res);
567
568         return (0);
569 } /* mysql_read_master_stats */
570
571 static int mysql_read_slave_stats (mysql_database_t *db, MYSQL *con)
572 {
573         MYSQL_RES *res;
574         MYSQL_ROW  row;
575
576         char *query;
577         int   field_num;
578
579         /* WTF? libmysqlclient does not seem to provide any means to
580          * translate a column name to a column index ... :-/ */
581         const int READ_MASTER_LOG_POS_IDX   = 6;
582         const int SLAVE_IO_RUNNING_IDX      = 10;
583         const int SLAVE_SQL_RUNNING_IDX     = 11;
584         const int EXEC_MASTER_LOG_POS_IDX   = 21;
585         const int SECONDS_BEHIND_MASTER_IDX = 32;
586
587         query = "SHOW SLAVE STATUS";
588
589         res = exec_query (con, query);
590         if (res == NULL)
591                 return (-1);
592
593         row = mysql_fetch_row (res);
594         if (row == NULL)
595         {
596                 ERROR ("mysql plugin: Failed to get slave statistics: "
597                                 "`%s' did not return any rows.", query);
598                 return (-1);
599         }
600
601         field_num = mysql_num_fields (res);
602         if (field_num < 33)
603         {
604                 ERROR ("mysql plugin: Failed to get slave statistics: "
605                                 "`%s' returned less than 33 columns.", query);
606                 return (-1);
607         }
608
609         if (db->slave_stats)
610         {
611                 unsigned long long counter;
612                 double gauge;
613
614                 counter = atoll (row[READ_MASTER_LOG_POS_IDX]);
615                 counter_submit ("mysql_log_position", "slave-read", counter, db);
616
617                 counter = atoll (row[EXEC_MASTER_LOG_POS_IDX]);
618                 counter_submit ("mysql_log_position", "slave-exec", counter, db);
619
620                 if (row[SECONDS_BEHIND_MASTER_IDX] != NULL)
621                 {
622                         gauge = atof (row[SECONDS_BEHIND_MASTER_IDX]);
623                         gauge_submit ("time_offset", NULL, gauge, db);
624                 }
625         }
626
627         if (db->slave_notif)
628         {
629                 notification_t n = { 0, time (NULL), "", "",
630                         "mysql", "", "time_offset", "", NULL };
631
632                 char *io, *sql;
633
634                 io  = row[SLAVE_IO_RUNNING_IDX];
635                 sql = row[SLAVE_SQL_RUNNING_IDX];
636
637                 set_host (db, n.host, sizeof (n.host));
638                 set_plugin_instance (db,
639                                 n.plugin_instance, sizeof (n.plugin_instance));
640
641                 if (((io == NULL) || (strcasecmp (io, "yes") != 0))
642                                 && (db->slave_io_running))
643                 {
644                         n.severity = NOTIF_WARNING;
645                         ssnprintf (n.message, sizeof (n.message),
646                                         "slave I/O thread not started or not connected to master");
647                         plugin_dispatch_notification (&n);
648                         db->slave_io_running = 0;
649                 }
650                 else if (((io != NULL) && (strcasecmp (io, "yes") == 0))
651                                 && (! db->slave_io_running))
652                 {
653                         n.severity = NOTIF_OKAY;
654                         ssnprintf (n.message, sizeof (n.message),
655                                         "slave I/O thread started and connected to master");
656                         plugin_dispatch_notification (&n);
657                         db->slave_io_running = 1;
658                 }
659
660                 if (((sql == NULL) || (strcasecmp (sql, "yes") != 0))
661                                 && (db->slave_sql_running))
662                 {
663                         n.severity = NOTIF_WARNING;
664                         ssnprintf (n.message, sizeof (n.message),
665                                         "slave SQL thread not started");
666                         plugin_dispatch_notification (&n);
667                         db->slave_sql_running = 0;
668                 }
669                 else if (((sql != NULL) && (strcasecmp (sql, "yes") == 0))
670                                 && (! db->slave_sql_running))
671                 {
672                         n.severity = NOTIF_OKAY;
673                         ssnprintf (n.message, sizeof (n.message),
674                                         "slave SQL thread started");
675                         plugin_dispatch_notification (&n);
676                         db->slave_sql_running = 0;
677                 }
678         }
679
680         row = mysql_fetch_row (res);
681         if (row != NULL)
682                 WARNING ("mysql plugin: `%s' returned more than one row - "
683                                 "ignoring further results.", query);
684
685         mysql_free_result (res);
686
687         return (0);
688 } /* mysql_read_slave_stats */
689
690 static int mysql_read (user_data_t *ud)
691 {
692         mysql_database_t *db;
693         MYSQL     *con;
694         MYSQL_RES *res;
695         MYSQL_ROW  row;
696         char      *query;
697         int        field_num;
698
699         unsigned long long qcache_hits          = 0ULL;
700         unsigned long long qcache_inserts       = 0ULL;
701         unsigned long long qcache_not_cached    = 0ULL;
702         unsigned long long qcache_lowmem_prunes = 0ULL;
703         int qcache_queries_in_cache = -1;
704
705         int threads_running   = -1;
706         int threads_connected = -1;
707         int threads_cached    = -1;
708         unsigned long long threads_created = 0ULL;
709
710         unsigned long long traffic_incoming = 0ULL;
711         unsigned long long traffic_outgoing = 0ULL;
712
713         if ((ud == NULL) || (ud->data == NULL))
714         {
715                 ERROR ("mysql plugin: mysql_database_read: Invalid user data.");
716                 return (-1);
717         }
718
719         db = (mysql_database_t *) ud->data;
720
721         /* An error message will have been printed in this case */
722         if ((con = getconnection (db)) == NULL)
723                 return (-1);
724
725         query = "SHOW STATUS";
726         if (mysql_get_server_version (con) >= 50002)
727                 query = "SHOW GLOBAL STATUS";
728
729         res = exec_query (con, query);
730         if (res == NULL)
731                 return (-1);
732
733         field_num = mysql_num_fields (res);
734         while ((row = mysql_fetch_row (res)))
735         {
736                 char *key;
737                 unsigned long long val;
738
739                 key = row[0];
740                 val = atoll (row[1]);
741
742                 if (strncmp (key, "Com_", 4) == 0)
743                 {
744                         if (val == 0ULL)
745                                 continue;
746
747                         /* Ignore `prepared statements' */
748                         if (strncmp (key, "Com_stmt_", 9) != 0)
749                                 counter_submit ("mysql_commands", key + 4, val, db);
750                 }
751                 else if (strncmp (key, "Handler_", 8) == 0)
752                 {
753                         if (val == 0ULL)
754                                 continue;
755
756                         counter_submit ("mysql_handler", key + 8, val, db);
757                 }
758                 else if (strncmp (key, "Qcache_", 7) == 0)
759                 {
760                         if (strcmp (key, "Qcache_hits") == 0)
761                                 qcache_hits = val;
762                         else if (strcmp (key, "Qcache_inserts") == 0)
763                                 qcache_inserts = val;
764                         else if (strcmp (key, "Qcache_not_cached") == 0)
765                                 qcache_not_cached = val;
766                         else if (strcmp (key, "Qcache_lowmem_prunes") == 0)
767                                 qcache_lowmem_prunes = val;
768                         else if (strcmp (key, "Qcache_queries_in_cache") == 0)
769                                 qcache_queries_in_cache = (int) val;
770                 }
771                 else if (strncmp (key, "Bytes_", 6) == 0)
772                 {
773                         if (strcmp (key, "Bytes_received") == 0)
774                                 traffic_incoming += val;
775                         else if (strcmp (key, "Bytes_sent") == 0)
776                                 traffic_outgoing += val;
777                 }
778                 else if (strncmp (key, "Threads_", 8) == 0)
779                 {
780                         if (strcmp (key, "Threads_running") == 0)
781                                 threads_running = (int) val;
782                         else if (strcmp (key, "Threads_connected") == 0)
783                                 threads_connected = (int) val;
784                         else if (strcmp (key, "Threads_cached") == 0)
785                                 threads_cached = (int) val;
786                         else if (strcmp (key, "Threads_created") == 0)
787                                 threads_created = val;
788                 }
789         }
790         mysql_free_result (res); res = NULL;
791
792         if ((qcache_hits != 0ULL)
793                         || (qcache_inserts != 0ULL)
794                         || (qcache_not_cached != 0ULL)
795                         || (qcache_lowmem_prunes != 0ULL))
796                 qcache_submit (qcache_hits, qcache_inserts, qcache_not_cached,
797                                qcache_lowmem_prunes, qcache_queries_in_cache, db);
798
799         if (threads_created != 0ULL)
800                 threads_submit (threads_running, threads_connected,
801                                 threads_cached, threads_created, db);
802
803         traffic_submit  (traffic_incoming, traffic_outgoing, db);
804
805         if (db->master_stats)
806                 mysql_read_master_stats (db, con);
807
808         if ((db->slave_stats) || (db->slave_notif))
809                 mysql_read_slave_stats (db, con);
810
811         return (0);
812 } /* int mysql_read */
813
814 void module_register (void)
815 {
816         plugin_register_complex_config ("mysql", mysql_config);
817 } /* void module_register */