src/utils_format_json.c: Fix usage of yajl_gen_config().
[collectd.git] / src / mysql.c
1 /**
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
8  *
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.
12  *
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.
17  *
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
21  *
22  * Authors:
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>
28  **/
29
30 #include "collectd.h"
31
32 #include "common.h"
33 #include "plugin.h"
34 #include "configfile.h"
35
36 #ifdef HAVE_MYSQL_H
37 #include <mysql.h>
38 #elif defined(HAVE_MYSQL_MYSQL_H)
39 #include <mysql/mysql.h>
40 #endif
41
42 struct mysql_database_s /* {{{ */
43 {
44         char *instance;
45         char *alias;
46         char *host;
47         char *user;
48         char *pass;
49         char *database;
50         char *socket;
51         int   port;
52         int   timeout;
53
54         _Bool master_stats;
55         _Bool slave_stats;
56         _Bool innodb_stats;
57         _Bool wsrep_stats;
58
59         _Bool slave_notif;
60         _Bool slave_io_running;
61         _Bool slave_sql_running;
62
63         MYSQL *con;
64         _Bool  is_connected;
65 };
66 typedef struct mysql_database_s mysql_database_t; /* }}} */
67
68 static int mysql_read (user_data_t *ud);
69
70 static void mysql_database_free (void *arg) /* {{{ */
71 {
72         mysql_database_t *db;
73
74         DEBUG ("mysql plugin: mysql_database_free (arg = %p);", arg);
75
76         db = arg;
77
78         if (db == NULL)
79                 return;
80
81         if (db->con != NULL)
82                 mysql_close (db->con);
83
84         sfree (db->alias);
85         sfree (db->host);
86         sfree (db->user);
87         sfree (db->pass);
88         sfree (db->socket);
89         sfree (db->instance);
90         sfree (db->database);
91         sfree (db);
92 } /* }}} void mysql_database_free */
93
94 /* Configuration handling functions {{{
95  *
96  * <Plugin mysql>
97  *   <Database "plugin_instance1">
98  *     Host "localhost"
99  *     Port 22000
100  *     ...
101  *   </Database>
102  * </Plugin>
103  */
104 static int mysql_config_database (oconfig_item_t *ci) /* {{{ */
105 {
106         mysql_database_t *db;
107         int status = 0;
108
109         if ((ci->values_num != 1)
110             || (ci->values[0].type != OCONFIG_TYPE_STRING))
111         {
112                 WARNING ("mysql plugin: The `Database' block "
113                          "needs exactly one string argument.");
114                 return (-1);
115         }
116
117         db = calloc (1, sizeof (*db));
118         if (db == NULL)
119         {
120                 ERROR ("mysql plugin: calloc failed.");
121                 return (-1);
122         }
123
124         /* initialize all the pointers */
125         db->alias    = NULL;
126         db->host     = NULL;
127         db->user     = NULL;
128         db->pass     = NULL;
129         db->database = NULL;
130         db->socket   = NULL;
131         db->con      = NULL;
132         db->timeout  = 0;
133
134         /* trigger a notification, if it's not running */
135         db->slave_io_running  = 1;
136         db->slave_sql_running = 1;
137
138         status = cf_util_get_string (ci, &db->instance);
139         if (status != 0)
140         {
141                 sfree (db);
142                 return (status);
143         }
144         assert (db->instance != NULL);
145
146         /* Fill the `mysql_database_t' structure.. */
147         for (int i = 0; i < ci->children_num; i++)
148         {
149                 oconfig_item_t *child = ci->children + i;
150
151                 if (strcasecmp ("Alias", child->key) == 0)
152                         status = cf_util_get_string (child, &db->alias);
153                 else if (strcasecmp ("Host", child->key) == 0)
154                         status = cf_util_get_string (child, &db->host);
155                 else if (strcasecmp ("User", child->key) == 0)
156                         status = cf_util_get_string (child, &db->user);
157                 else if (strcasecmp ("Password", child->key) == 0)
158                         status = cf_util_get_string (child, &db->pass);
159                 else if (strcasecmp ("Port", child->key) == 0)
160                 {
161                         status = cf_util_get_port_number (child);
162                         if (status > 0)
163                         {
164                                 db->port = status;
165                                 status = 0;
166                         }
167                 }
168                 else if (strcasecmp ("Socket", child->key) == 0)
169                         status = cf_util_get_string (child, &db->socket);
170                 else if (strcasecmp ("Database", child->key) == 0)
171                         status = cf_util_get_string (child, &db->database);
172                 else if (strcasecmp ("ConnectTimeout", child->key) == 0)
173                         status = cf_util_get_int (child, &db->timeout);
174                 else if (strcasecmp ("MasterStats", child->key) == 0)
175                         status = cf_util_get_boolean (child, &db->master_stats);
176                 else if (strcasecmp ("SlaveStats", child->key) == 0)
177                         status = cf_util_get_boolean (child, &db->slave_stats);
178                 else if (strcasecmp ("SlaveNotifications", child->key) == 0)
179                         status = cf_util_get_boolean (child, &db->slave_notif);
180                 else if (strcasecmp ("InnodbStats", child->key) == 0)
181                         status = cf_util_get_boolean (child, &db->innodb_stats);
182                 else if (strcasecmp ("WsrepStats", child->key) == 0)
183                         status = cf_util_get_boolean (child, &db->wsrep_stats);
184                 else
185                 {
186                         WARNING ("mysql plugin: Option `%s' not allowed here.", child->key);
187                         status = -1;
188                 }
189
190                 if (status != 0)
191                         break;
192         }
193
194         /* If all went well, register this database for reading */
195         if (status == 0)
196         {
197                 user_data_t ud = { 0 };
198                 char cb_name[DATA_MAX_NAME_LEN];
199
200                 DEBUG ("mysql plugin: Registering new read callback: %s",
201                                 (db->database != NULL) ? db->database : "<default>");
202
203                 ud.data = (void *) db;
204                 ud.free_func = mysql_database_free;
205
206                 if (db->instance != NULL)
207                         ssnprintf (cb_name, sizeof (cb_name), "mysql-%s",
208                                         db->instance);
209                 else
210                         sstrncpy (cb_name, "mysql", sizeof (cb_name));
211
212                 plugin_register_complex_read (/* group = */ NULL, cb_name,
213                                               mysql_read,
214                                               /* interval = */ 0, &ud);
215         }
216         else
217         {
218                 mysql_database_free (db);
219                 return (-1);
220         }
221
222         return (0);
223 } /* }}} int mysql_config_database */
224
225 static int mysql_config (oconfig_item_t *ci) /* {{{ */
226 {
227         if (ci == NULL)
228                 return (EINVAL);
229
230         /* Fill the `mysql_database_t' structure.. */
231         for (int i = 0; i < ci->children_num; i++)
232         {
233                 oconfig_item_t *child = ci->children + i;
234
235                 if (strcasecmp ("Database", child->key) == 0)
236                         mysql_config_database (child);
237                 else
238                         WARNING ("mysql plugin: Option \"%s\" not allowed here.",
239                                         child->key);
240         }
241
242         return (0);
243 } /* }}} int mysql_config */
244
245 /* }}} End of configuration handling functions */
246
247 static MYSQL *getconnection (mysql_database_t *db)
248 {
249         if (db->is_connected)
250         {
251                 int status;
252
253                 status = mysql_ping (db->con);
254                 if (status == 0)
255                         return (db->con);
256
257                 WARNING ("mysql plugin: Lost connection to instance \"%s\": %s",
258                                 db->instance, mysql_error (db->con));
259         }
260         db->is_connected = 0;
261
262         if (db->con == NULL)
263         {
264                 db->con = mysql_init (NULL);
265                 if (db->con == NULL)
266                 {
267                         ERROR ("mysql plugin: mysql_init failed: %s",
268                                         mysql_error (db->con));
269                         return (NULL);
270                 }
271         }
272
273         /* Configure TCP connect timeout (default: 0) */
274         db->con->options.connect_timeout = db->timeout;
275
276         if (mysql_real_connect (db->con, db->host, db->user, db->pass,
277                                 db->database, db->port, db->socket, 0) == NULL)
278         {
279                 ERROR ("mysql plugin: Failed to connect to database %s "
280                                 "at server %s: %s",
281                                 (db->database != NULL) ? db->database : "<none>",
282                                 (db->host != NULL) ? db->host : "localhost",
283                                 mysql_error (db->con));
284                 return (NULL);
285         }
286
287         INFO ("mysql plugin: Successfully connected to database %s "
288                         "at server %s (server version: %s, protocol version: %d)",
289                         (db->database != NULL) ? db->database : "<none>",
290                         mysql_get_host_info (db->con),
291                         mysql_get_server_info (db->con),
292                         mysql_get_proto_info (db->con));
293
294         db->is_connected = 1;
295         return (db->con);
296 } /* static MYSQL *getconnection (mysql_database_t *db) */
297
298 static void set_host (mysql_database_t *db, char *buf, size_t buflen)
299 {
300         if (db->alias)
301                 sstrncpy (buf, db->alias, buflen);
302         else if ((db->host == NULL)
303                         || (strcmp ("", db->host) == 0)
304                         || (strcmp ("127.0.0.1", db->host) == 0)
305                         || (strcmp ("localhost", db->host) == 0))
306                 sstrncpy (buf, hostname_g, buflen);
307         else
308                 sstrncpy (buf, db->host, buflen);
309 } /* void set_host */
310
311 static void submit (const char *type, const char *type_instance,
312                 value_t *values, size_t values_len, mysql_database_t *db)
313 {
314         value_list_t vl = VALUE_LIST_INIT;
315
316         vl.values     = values;
317         vl.values_len = values_len;
318
319         set_host (db, vl.host, sizeof (vl.host));
320
321         sstrncpy (vl.plugin, "mysql", sizeof (vl.plugin));
322
323         /* Assured by "mysql_config_database" */
324         assert (db->instance != NULL);
325         sstrncpy (vl.plugin_instance, db->instance, sizeof (vl.plugin_instance));
326
327         sstrncpy (vl.type, type, sizeof (vl.type));
328         if (type_instance != NULL)
329                 sstrncpy (vl.type_instance, type_instance, sizeof (vl.type_instance));
330
331         plugin_dispatch_values (&vl);
332 } /* submit */
333
334 static void counter_submit (const char *type, const char *type_instance,
335                 derive_t value, mysql_database_t *db)
336 {
337         value_t values[1];
338
339         values[0].derive = value;
340         submit (type, type_instance, values, STATIC_ARRAY_SIZE (values), db);
341 } /* void counter_submit */
342
343 static void gauge_submit (const char *type, const char *type_instance,
344                 gauge_t value, mysql_database_t *db)
345 {
346         value_t values[1];
347
348         values[0].gauge = value;
349         submit (type, type_instance, values, STATIC_ARRAY_SIZE (values), db);
350 } /* void gauge_submit */
351
352 static void derive_submit (const char *type, const char *type_instance,
353                 derive_t value, mysql_database_t *db)
354 {
355         value_t values[1];
356
357         values[0].derive = value;
358         submit (type, type_instance, values, STATIC_ARRAY_SIZE (values), db);
359 } /* void derive_submit */
360
361 static void traffic_submit (derive_t rx, derive_t tx, mysql_database_t *db)
362 {
363         value_t values[2];
364
365         values[0].derive = rx;
366         values[1].derive = tx;
367
368         submit ("mysql_octets", NULL, values, STATIC_ARRAY_SIZE (values), db);
369 } /* void traffic_submit */
370
371 static MYSQL_RES *exec_query (MYSQL *con, const char *query)
372 {
373         MYSQL_RES *res;
374
375         int query_len = strlen (query);
376
377         if (mysql_real_query (con, query, query_len))
378         {
379                 ERROR ("mysql plugin: Failed to execute query: %s",
380                                 mysql_error (con));
381                 INFO ("mysql plugin: SQL query was: %s", query);
382                 return (NULL);
383         }
384
385         res = mysql_store_result (con);
386         if (res == NULL)
387         {
388                 ERROR ("mysql plugin: Failed to store query result: %s",
389                                 mysql_error (con));
390                 INFO ("mysql plugin: SQL query was: %s", query);
391                 return (NULL);
392         }
393
394         return (res);
395 } /* exec_query */
396
397 static int mysql_read_master_stats (mysql_database_t *db, MYSQL *con)
398 {
399         MYSQL_RES *res;
400         MYSQL_ROW  row;
401
402         const char *query;
403         int         field_num;
404         unsigned long long position;
405
406         query = "SHOW MASTER STATUS";
407
408         res = exec_query (con, query);
409         if (res == NULL)
410                 return (-1);
411
412         row = mysql_fetch_row (res);
413         if (row == NULL)
414         {
415                 ERROR ("mysql plugin: Failed to get master statistics: "
416                                 "`%s' did not return any rows.", query);
417                 mysql_free_result (res);
418                 return (-1);
419         }
420
421         field_num = mysql_num_fields (res);
422         if (field_num < 2)
423         {
424                 ERROR ("mysql plugin: Failed to get master statistics: "
425                                 "`%s' returned less than two columns.", query);
426                 mysql_free_result (res);
427                 return (-1);
428         }
429
430         position = atoll (row[1]);
431         counter_submit ("mysql_log_position", "master-bin", position, db);
432
433         row = mysql_fetch_row (res);
434         if (row != NULL)
435                 WARNING ("mysql plugin: `%s' returned more than one row - "
436                                 "ignoring further results.", query);
437
438         mysql_free_result (res);
439
440         return (0);
441 } /* mysql_read_master_stats */
442
443 static int mysql_read_slave_stats (mysql_database_t *db, MYSQL *con)
444 {
445         MYSQL_RES *res;
446         MYSQL_ROW  row;
447
448         const char *query;
449         int         field_num;
450
451         /* WTF? libmysqlclient does not seem to provide any means to
452          * translate a column name to a column index ... :-/ */
453         const int READ_MASTER_LOG_POS_IDX   = 6;
454         const int SLAVE_IO_RUNNING_IDX      = 10;
455         const int SLAVE_SQL_RUNNING_IDX     = 11;
456         const int EXEC_MASTER_LOG_POS_IDX   = 21;
457         const int SECONDS_BEHIND_MASTER_IDX = 32;
458
459         query = "SHOW SLAVE STATUS";
460
461         res = exec_query (con, query);
462         if (res == NULL)
463                 return (-1);
464
465         row = mysql_fetch_row (res);
466         if (row == NULL)
467         {
468                 ERROR ("mysql plugin: Failed to get slave statistics: "
469                                 "`%s' did not return any rows.", query);
470                 mysql_free_result (res);
471                 return (-1);
472         }
473
474         field_num = mysql_num_fields (res);
475         if (field_num < 33)
476         {
477                 ERROR ("mysql plugin: Failed to get slave statistics: "
478                                 "`%s' returned less than 33 columns.", query);
479                 mysql_free_result (res);
480                 return (-1);
481         }
482
483         if (db->slave_stats)
484         {
485                 unsigned long long counter;
486                 double gauge;
487
488                 counter = atoll (row[READ_MASTER_LOG_POS_IDX]);
489                 counter_submit ("mysql_log_position", "slave-read", counter, db);
490
491                 counter = atoll (row[EXEC_MASTER_LOG_POS_IDX]);
492                 counter_submit ("mysql_log_position", "slave-exec", counter, db);
493
494                 if (row[SECONDS_BEHIND_MASTER_IDX] != NULL)
495                 {
496                         gauge = atof (row[SECONDS_BEHIND_MASTER_IDX]);
497                         gauge_submit ("time_offset", NULL, gauge, db);
498                 }
499         }
500
501         if (db->slave_notif)
502         {
503                 notification_t n = { 0, cdtime (), "", "",
504                         "mysql", "", "time_offset", "", NULL };
505
506                 char *io, *sql;
507
508                 io  = row[SLAVE_IO_RUNNING_IDX];
509                 sql = row[SLAVE_SQL_RUNNING_IDX];
510
511                 set_host (db, n.host, sizeof (n.host));
512
513                 /* Assured by "mysql_config_database" */
514                 assert (db->instance != NULL);
515                 sstrncpy (n.plugin_instance, db->instance, sizeof (n.plugin_instance));
516
517                 if (((io == NULL) || (strcasecmp (io, "yes") != 0))
518                                 && (db->slave_io_running))
519                 {
520                         n.severity = NOTIF_WARNING;
521                         ssnprintf (n.message, sizeof (n.message),
522                                         "slave I/O thread not started or not connected to master");
523                         plugin_dispatch_notification (&n);
524                         db->slave_io_running = 0;
525                 }
526                 else if (((io != NULL) && (strcasecmp (io, "yes") == 0))
527                                 && (! db->slave_io_running))
528                 {
529                         n.severity = NOTIF_OKAY;
530                         ssnprintf (n.message, sizeof (n.message),
531                                         "slave I/O thread started and connected to master");
532                         plugin_dispatch_notification (&n);
533                         db->slave_io_running = 1;
534                 }
535
536                 if (((sql == NULL) || (strcasecmp (sql, "yes") != 0))
537                                 && (db->slave_sql_running))
538                 {
539                         n.severity = NOTIF_WARNING;
540                         ssnprintf (n.message, sizeof (n.message),
541                                         "slave SQL thread not started");
542                         plugin_dispatch_notification (&n);
543                         db->slave_sql_running = 0;
544                 }
545                 else if (((sql != NULL) && (strcasecmp (sql, "yes") == 0))
546                                 && (! db->slave_sql_running))
547                 {
548                         n.severity = NOTIF_OKAY;
549                         ssnprintf (n.message, sizeof (n.message),
550                                         "slave SQL thread started");
551                         plugin_dispatch_notification (&n);
552                         db->slave_sql_running = 1;
553                 }
554         }
555
556         row = mysql_fetch_row (res);
557         if (row != NULL)
558                 WARNING ("mysql plugin: `%s' returned more than one row - "
559                                 "ignoring further results.", query);
560
561         mysql_free_result (res);
562
563         return (0);
564 } /* mysql_read_slave_stats */
565
566 static int mysql_read_innodb_stats (mysql_database_t *db, MYSQL *con)
567 {
568         MYSQL_RES *res;
569         MYSQL_ROW  row;
570
571         const char *query;
572         struct {
573                 const char *key;
574                 const char *type;
575                 int ds_type;
576         } metrics[] = {
577                 { "metadata_mem_pool_size",          "bytes",        DS_TYPE_GAUGE },
578                 { "lock_deadlocks",                  "mysql_locks",  DS_TYPE_DERIVE },
579                 { "lock_timeouts",                   "mysql_locks",  DS_TYPE_DERIVE },
580                 { "lock_row_lock_current_waits",     "mysql_locks",  DS_TYPE_DERIVE },
581                 { "buffer_pool_size",                "bytes",        DS_TYPE_GAUGE },
582
583                 { "buffer_pool_reads",               "operations",   DS_TYPE_DERIVE },
584                 { "buffer_pool_read_requests",       "operations",   DS_TYPE_DERIVE },
585                 { "buffer_pool_write_requests",      "operations",   DS_TYPE_DERIVE },
586                 { "buffer_pool_wait_free",           "operations",   DS_TYPE_DERIVE },
587                 { "buffer_pool_read_ahead",          "operations",   DS_TYPE_DERIVE },
588                 { "buffer_pool_read_ahead_evicted",  "operations",   DS_TYPE_DERIVE },
589
590                 { "buffer_pool_pages_total",         "gauge",        DS_TYPE_GAUGE },
591                 { "buffer_pool_pages_misc",          "gauge",        DS_TYPE_GAUGE },
592                 { "buffer_pool_pages_data",          "gauge",        DS_TYPE_GAUGE },
593                 { "buffer_pool_bytes_data",          "gauge",        DS_TYPE_GAUGE },
594                 { "buffer_pool_pages_dirty",         "gauge",        DS_TYPE_GAUGE },
595                 { "buffer_pool_bytes_dirty",         "gauge",        DS_TYPE_GAUGE },
596                 { "buffer_pool_pages_free",          "gauge",        DS_TYPE_GAUGE },
597
598                 { "buffer_pages_created",            "operations",   DS_TYPE_DERIVE },
599                 { "buffer_pages_written",            "operations",   DS_TYPE_DERIVE },
600                 { "buffer_pages_read",               "operations",   DS_TYPE_DERIVE },
601                 { "buffer_data_reads",               "operations",   DS_TYPE_DERIVE },
602                 { "buffer_data_written",             "operations",   DS_TYPE_DERIVE },
603
604                 { "os_data_reads",                   "operations",   DS_TYPE_DERIVE },
605                 { "os_data_writes",                  "operations",   DS_TYPE_DERIVE },
606                 { "os_data_fsyncs",                  "operations",   DS_TYPE_DERIVE },
607                 { "os_log_bytes_written",            "operations",   DS_TYPE_DERIVE },
608                 { "os_log_fsyncs",                   "operations",   DS_TYPE_DERIVE },
609                 { "os_log_pending_fsyncs",           "operations",   DS_TYPE_DERIVE },
610                 { "os_log_pending_writes",           "operations",   DS_TYPE_DERIVE },
611
612                 { "trx_rseg_history_len",            "gauge",        DS_TYPE_GAUGE },
613
614                 { "log_waits",                       "operations",   DS_TYPE_DERIVE },
615                 { "log_write_requests",              "operations",   DS_TYPE_DERIVE },
616                 { "log_writes",                      "operations",   DS_TYPE_DERIVE },
617                 { "adaptive_hash_searches",          "operations",   DS_TYPE_DERIVE },
618
619                 { "file_num_open_files",             "gauge",        DS_TYPE_GAUGE },
620
621                 { "ibuf_merges_insert",              "operations",   DS_TYPE_DERIVE },
622                 { "ibuf_merges_delete_mark",         "operations",   DS_TYPE_DERIVE },
623                 { "ibuf_merges_delete",              "operations",   DS_TYPE_DERIVE },
624                 { "ibuf_merges_discard_insert",      "operations",   DS_TYPE_DERIVE },
625                 { "ibuf_merges_discard_delete_mark", "operations",   DS_TYPE_DERIVE },
626                 { "ibuf_merges_discard_delete",      "operations",   DS_TYPE_DERIVE },
627                 { "ibuf_merges_discard_merges",      "operations",   DS_TYPE_DERIVE },
628                 { "ibuf_size",                       "bytes",        DS_TYPE_GAUGE },
629
630                 { "innodb_activity_count",           "gauge",        DS_TYPE_GAUGE },
631                 { "innodb_dblwr_writes",             "operations",   DS_TYPE_DERIVE },
632                 { "innodb_dblwr_pages_written",      "operations",   DS_TYPE_DERIVE },
633                 { "innodb_dblwr_page_size",          "gauge",        DS_TYPE_GAUGE },
634
635                 { "innodb_rwlock_s_spin_waits",      "operations",   DS_TYPE_DERIVE },
636                 { "innodb_rwlock_x_spin_waits",      "operations",   DS_TYPE_DERIVE },
637                 { "innodb_rwlock_s_spin_rounds",     "operations",   DS_TYPE_DERIVE },
638                 { "innodb_rwlock_x_spin_rounds",     "operations",   DS_TYPE_DERIVE },
639                 { "innodb_rwlock_s_os_waits",        "operations",   DS_TYPE_DERIVE },
640                 { "innodb_rwlock_x_os_waits",        "operations",   DS_TYPE_DERIVE },
641
642                 { "dml_reads",                       "operations",   DS_TYPE_DERIVE },
643                 { "dml_inserts",                     "operations",   DS_TYPE_DERIVE },
644                 { "dml_deletes",                     "operations",   DS_TYPE_DERIVE },
645                 { "dml_updates",                     "operations",   DS_TYPE_DERIVE },
646
647                 { NULL,                              NULL,           0}
648         };
649
650         query = "SELECT name, count, type FROM information_schema.innodb_metrics WHERE status = 'enabled'";
651
652         res = exec_query (con, query);
653         if (res == NULL)
654                 return (-1);
655
656         while ((row = mysql_fetch_row (res)))
657         {
658                 int i;
659                 char *key;
660                 unsigned long long val;
661
662                 key = row[0];
663                 val = atoll (row[1]);
664
665                 for (i = 0; metrics[i].key != NULL && strcmp(metrics[i].key, key) != 0; i++)
666                         ;
667
668                 if (metrics[i].key == NULL)
669                         continue;
670
671                 switch (metrics[i].ds_type) {
672                         case DS_TYPE_COUNTER:
673                                 counter_submit(metrics[i].type, key, (counter_t)val, db);
674                                 break;
675                         case DS_TYPE_GAUGE:
676                                 gauge_submit(metrics[i].type, key, (gauge_t)val, db);
677                                 break;
678                         case DS_TYPE_DERIVE:
679                                 derive_submit(metrics[i].type, key, (derive_t)val, db);
680                                 break;
681                 }
682         }
683
684         mysql_free_result(res);
685         return (0);
686 }
687
688 static int mysql_read_wsrep_stats (mysql_database_t *db, MYSQL *con)
689 {
690         MYSQL_RES *res;
691         MYSQL_ROW  row;
692
693         const char *query;
694         struct {
695                 const char *key;
696                 const char *type;
697                 int ds_type;
698         } metrics[] = {
699
700                 { "wsrep_apply_oooe",                "operations",   DS_TYPE_DERIVE },
701                 { "wsrep_apply_oool",                "operations",   DS_TYPE_DERIVE },
702                 { "wsrep_causal_reads",              "operations",   DS_TYPE_DERIVE },
703                 { "wsrep_commit_oooe",               "operations",   DS_TYPE_DERIVE },
704                 { "wsrep_commit_oool",               "operations",   DS_TYPE_DERIVE },
705                 { "wsrep_flow_control_recv",         "operations",   DS_TYPE_DERIVE },
706                 { "wsrep_flow_control_sent",         "operations",   DS_TYPE_DERIVE },
707                 { "wsrep_flow_control_paused",       "operations",   DS_TYPE_DERIVE },
708                 { "wsrep_local_bf_aborts",           "operations",   DS_TYPE_DERIVE },
709                 { "wsrep_local_cert_failures",       "operations",   DS_TYPE_DERIVE },
710                 { "wsrep_local_commits",             "operations",   DS_TYPE_DERIVE },
711                 { "wsrep_local_replays",             "operations",   DS_TYPE_DERIVE },
712                 { "wsrep_received",                  "operations",   DS_TYPE_DERIVE },
713                 { "wsrep_replicated",                "operations",   DS_TYPE_DERIVE },
714
715                 { "wsrep_received_bytes",            "total_bytes",  DS_TYPE_DERIVE },
716                 { "wsrep_replicated_bytes",          "total_bytes",  DS_TYPE_DERIVE },
717
718                 { "wsrep_apply_window",              "gauge",        DS_TYPE_GAUGE },
719                 { "wsrep_commit_window",             "gauge",        DS_TYPE_GAUGE },
720
721                 { "wsrep_cluster_size",              "gauge",        DS_TYPE_GAUGE },
722                 { "wsrep_cert_deps_distance",        "gauge",        DS_TYPE_GAUGE },
723
724                 { "wsrep_local_recv_queue",          "queue_length", DS_TYPE_GAUGE },
725                 { "wsrep_local_send_queue",          "queue_length", DS_TYPE_GAUGE },
726
727                 { NULL,                              NULL,           0}
728
729         };
730
731         query = "SHOW GLOBAL STATUS LIKE 'wsrep_%'";
732
733         res = exec_query (con, query);
734         if (res == NULL)
735                 return (-1);
736
737         row = mysql_fetch_row (res);
738         if (row == NULL)
739         {
740                 ERROR ("mysql plugin: Failed to get wsrep statistics: "
741                         "`%s' did not return any rows.", query);
742                 mysql_free_result (res);
743                 return (-1);
744         }
745
746         while ((row = mysql_fetch_row (res)))
747         {
748                 int i;
749                 char *key;
750                 unsigned long long val;
751
752                 key = row[0];
753                 val = atoll (row[1]);
754
755                 for (i = 0; metrics[i].key != NULL && strcmp(metrics[i].key, key) != 0; i++)
756                         ;
757
758                 if (metrics[i].key == NULL)
759                         continue;
760
761                 switch (metrics[i].ds_type) {
762                         case DS_TYPE_GAUGE:
763                                 gauge_submit(metrics[i].type, key, (gauge_t)val, db);
764                                 break;
765                         case DS_TYPE_DERIVE:
766                                 derive_submit(metrics[i].type, key, (derive_t)val, db);
767                                 break;
768                 }
769         }
770
771         mysql_free_result(res);
772         return (0);
773 } /* mysql_read_wsrep_stats */
774
775 static int mysql_read (user_data_t *ud)
776 {
777         mysql_database_t *db;
778         MYSQL      *con;
779         MYSQL_RES  *res;
780         MYSQL_ROW   row;
781         const char *query;
782
783         derive_t qcache_hits          = 0;
784         derive_t qcache_inserts       = 0;
785         derive_t qcache_not_cached    = 0;
786         derive_t qcache_lowmem_prunes = 0;
787         gauge_t qcache_queries_in_cache = NAN;
788
789         gauge_t threads_running   = NAN;
790         gauge_t threads_connected = NAN;
791         gauge_t threads_cached    = NAN;
792         derive_t threads_created = 0;
793
794         unsigned long long traffic_incoming = 0ULL;
795         unsigned long long traffic_outgoing = 0ULL;
796         unsigned long mysql_version = 0ULL;
797
798         if ((ud == NULL) || (ud->data == NULL))
799         {
800                 ERROR ("mysql plugin: mysql_database_read: Invalid user data.");
801                 return (-1);
802         }
803
804         db = (mysql_database_t *) ud->data;
805
806         /* An error message will have been printed in this case */
807         if ((con = getconnection (db)) == NULL)
808                 return (-1);
809
810         mysql_version = mysql_get_server_version(con);
811
812         query = "SHOW STATUS";
813         if (mysql_version >= 50002)
814                 query = "SHOW GLOBAL STATUS";
815
816         res = exec_query (con, query);
817         if (res == NULL)
818                 return (-1);
819
820         while ((row = mysql_fetch_row (res)))
821         {
822                 char *key;
823                 unsigned long long val;
824
825                 key = row[0];
826                 val = atoll (row[1]);
827
828                 if (strncmp (key, "Com_",
829                                   strlen ("Com_")) == 0)
830                 {
831                         if (val == 0ULL)
832                                 continue;
833
834                         /* Ignore `prepared statements' */
835                         if (strncmp (key, "Com_stmt_", strlen ("Com_stmt_")) != 0)
836                                 counter_submit ("mysql_commands",
837                                                 key + strlen ("Com_"),
838                                                 val, db);
839                 }
840                 else if (strncmp (key, "Handler_",
841                                         strlen ("Handler_")) == 0)
842                 {
843                         if (val == 0ULL)
844                                 continue;
845
846                         counter_submit ("mysql_handler",
847                                         key + strlen ("Handler_"),
848                                         val, db);
849                 }
850                 else if (strncmp (key, "Qcache_",
851                                         strlen ("Qcache_")) == 0)
852                 {
853                         if (strcmp (key, "Qcache_hits") == 0)
854                                 qcache_hits = (derive_t) val;
855                         else if (strcmp (key, "Qcache_inserts") == 0)
856                                 qcache_inserts = (derive_t) val;
857                         else if (strcmp (key, "Qcache_not_cached") == 0)
858                                 qcache_not_cached = (derive_t) val;
859                         else if (strcmp (key, "Qcache_lowmem_prunes") == 0)
860                                 qcache_lowmem_prunes = (derive_t) val;
861                         else if (strcmp (key, "Qcache_queries_in_cache") == 0)
862                                 qcache_queries_in_cache = (gauge_t) val;
863                 }
864                 else if (strncmp (key, "Bytes_",
865                                         strlen ("Bytes_")) == 0)
866                 {
867                         if (strcmp (key, "Bytes_received") == 0)
868                                 traffic_incoming += val;
869                         else if (strcmp (key, "Bytes_sent") == 0)
870                                 traffic_outgoing += val;
871                 }
872                 else if (strncmp (key, "Threads_",
873                                         strlen ("Threads_")) == 0)
874                 {
875                         if (strcmp (key, "Threads_running") == 0)
876                                 threads_running = (gauge_t) val;
877                         else if (strcmp (key, "Threads_connected") == 0)
878                                 threads_connected = (gauge_t) val;
879                         else if (strcmp (key, "Threads_cached") == 0)
880                                 threads_cached = (gauge_t) val;
881                         else if (strcmp (key, "Threads_created") == 0)
882                                 threads_created = (derive_t) val;
883                 }
884                 else if (strncmp (key, "Table_locks_",
885                                         strlen ("Table_locks_")) == 0)
886                 {
887                         counter_submit ("mysql_locks",
888                                         key + strlen ("Table_locks_"),
889                                         val, db);
890                 }
891                 else if (db->innodb_stats && strncmp (key, "Innodb_", strlen ("Innodb_")) == 0)
892                 {
893                         /* buffer pool */
894                         if (strcmp (key, "Innodb_buffer_pool_pages_data") == 0)
895                                 gauge_submit ("mysql_bpool_pages", "data", val, db);
896                         else if (strcmp (key, "Innodb_buffer_pool_pages_dirty") == 0)
897                                 gauge_submit ("mysql_bpool_pages", "dirty", val, db);
898                         else if (strcmp (key, "Innodb_buffer_pool_pages_flushed") == 0)
899                                 counter_submit ("mysql_bpool_counters", "pages_flushed", val, db);
900                         else if (strcmp (key, "Innodb_buffer_pool_pages_free") == 0)
901                                 gauge_submit ("mysql_bpool_pages", "free", val, db);
902                         else if (strcmp (key, "Innodb_buffer_pool_pages_misc") == 0)
903                                 gauge_submit ("mysql_bpool_pages", "misc", val, db);
904                         else if (strcmp (key, "Innodb_buffer_pool_pages_total") == 0)
905                                 gauge_submit ("mysql_bpool_pages", "total", val, db);
906                         else if (strcmp (key, "Innodb_buffer_pool_read_ahead_rnd") == 0)
907                                 counter_submit ("mysql_bpool_counters", "read_ahead_rnd", val, db);
908                         else if (strcmp (key, "Innodb_buffer_pool_read_ahead") == 0)
909                                 counter_submit ("mysql_bpool_counters", "read_ahead", val, db);
910                         else if (strcmp (key, "Innodb_buffer_pool_read_ahead_evicted") == 0)
911                                 counter_submit ("mysql_bpool_counters", "read_ahead_evicted", val, db);
912                         else if (strcmp (key, "Innodb_buffer_pool_read_requests") == 0)
913                                 counter_submit ("mysql_bpool_counters", "read_requests", val, db);
914                         else if (strcmp (key, "Innodb_buffer_pool_reads") == 0)
915                                 counter_submit ("mysql_bpool_counters", "reads", val, db);
916                         else if (strcmp (key, "Innodb_buffer_pool_write_requests") == 0)
917                                 counter_submit ("mysql_bpool_counters", "write_requests", val, db);
918                         else if (strcmp (key, "Innodb_buffer_pool_bytes_data") == 0)
919                                 gauge_submit ("mysql_bpool_bytes", "data", val, db);
920                         else if (strcmp (key, "Innodb_buffer_pool_bytes_dirty") == 0)
921                                 gauge_submit ("mysql_bpool_bytes", "dirty", val, db);
922
923                         /* data */
924                         if (strcmp (key, "Innodb_data_fsyncs") == 0)
925                                 counter_submit ("mysql_innodb_data", "fsyncs", val, db);
926                         else if (strcmp (key, "Innodb_data_read") == 0)
927                                 counter_submit ("mysql_innodb_data", "read", val, db);
928                         else if (strcmp (key, "Innodb_data_reads") == 0)
929                                 counter_submit ("mysql_innodb_data", "reads", val, db);
930                         else if (strcmp (key, "Innodb_data_writes") == 0)
931                                 counter_submit ("mysql_innodb_data", "writes", val, db);
932                         else if (strcmp (key, "Innodb_data_written") == 0)
933                                 counter_submit ("mysql_innodb_data", "written", val, db);
934
935                         /* double write */
936                         else if (strcmp (key, "Innodb_dblwr_writes") == 0)
937                                 counter_submit ("mysql_innodb_dblwr", "writes", val, db);
938                         else if (strcmp (key, "Innodb_dblwr_pages_written") == 0)
939                                 counter_submit ("mysql_innodb_dblwr", "written", val, db);
940
941                         /* log */
942                         else if (strcmp (key, "Innodb_log_waits") == 0)
943                                 counter_submit ("mysql_innodb_log", "waits", val, db);
944                         else if (strcmp (key, "Innodb_log_write_requests") == 0)
945                                 counter_submit ("mysql_innodb_log", "write_requests", val, db);
946                         else if (strcmp (key, "Innodb_log_writes") == 0)
947                                 counter_submit ("mysql_innodb_log", "writes", val, db);
948                         else if (strcmp (key, "Innodb_os_log_fsyncs") == 0)
949                                 counter_submit ("mysql_innodb_log", "fsyncs", val, db);
950                         else if (strcmp (key, "Innodb_os_log_written") == 0)
951                                 counter_submit ("mysql_innodb_log", "written", val, db);
952
953                         /* pages */
954                         else if (strcmp (key, "Innodb_pages_created") == 0)
955                                 counter_submit ("mysql_innodb_pages", "created", val, db);
956                         else if (strcmp (key, "Innodb_pages_read") == 0)
957                                 counter_submit ("mysql_innodb_pages", "read", val, db);
958                         else if (strcmp (key, "Innodb_pages_written") == 0)
959                                 counter_submit ("mysql_innodb_pages", "written", val, db);
960
961                         /* row lock */
962                         else if (strcmp (key, "Innodb_row_lock_time") == 0)
963                                 counter_submit ("mysql_innodb_row_lock", "time", val, db);
964                         else if (strcmp (key, "Innodb_row_lock_waits") == 0)
965                                 counter_submit ("mysql_innodb_row_lock", "waits", val, db);
966
967                         /* rows */
968                         else if (strcmp (key, "Innodb_rows_deleted") == 0)
969                                 counter_submit ("mysql_innodb_rows", "deleted", val, db);
970                         else if (strcmp (key, "Innodb_rows_inserted") == 0)
971                                 counter_submit ("mysql_innodb_rows", "inserted", val, db);
972                         else if (strcmp (key, "Innodb_rows_read") == 0)
973                                 counter_submit ("mysql_innodb_rows", "read", val, db);
974                         else if (strcmp (key, "Innodb_rows_updated") == 0)
975                                 counter_submit ("mysql_innodb_rows", "updated", val, db);
976                 }
977                 else if (strncmp (key, "Select_", strlen ("Select_")) == 0)
978                 {
979                         counter_submit ("mysql_select", key + strlen ("Select_"),
980                                         val, db);
981                 }
982                 else if (strncmp (key, "Sort_", strlen ("Sort_")) == 0)
983                 {
984                         if (strcmp (key, "Sort_merge_passes") == 0)
985                                 counter_submit ("mysql_sort_merge_passes", NULL, val, db);
986                         else if (strcmp (key, "Sort_rows") == 0)
987                                 counter_submit ("mysql_sort_rows", NULL, val, db);
988                         else if (strcmp (key, "Sort_range") == 0)
989                                 counter_submit ("mysql_sort", "range", val, db);
990                         else if (strcmp (key, "Sort_scan") == 0)
991                                 counter_submit ("mysql_sort", "scan", val, db);
992
993                 }
994                 else if (strncmp (key, "Slow_queries", strlen ("Slow_queries")) == 0) 
995                 {
996                         counter_submit ("mysql_slow_queries", NULL , val, db);
997                 }
998         }
999         mysql_free_result (res); res = NULL;
1000
1001         if ((qcache_hits != 0)
1002                         || (qcache_inserts != 0)
1003                         || (qcache_not_cached != 0)
1004                         || (qcache_lowmem_prunes != 0))
1005         {
1006                 derive_submit ("cache_result", "qcache-hits",
1007                                 qcache_hits, db);
1008                 derive_submit ("cache_result", "qcache-inserts",
1009                                 qcache_inserts, db);
1010                 derive_submit ("cache_result", "qcache-not_cached",
1011                                 qcache_not_cached, db);
1012                 derive_submit ("cache_result", "qcache-prunes",
1013                                 qcache_lowmem_prunes, db);
1014
1015                 gauge_submit ("cache_size", "qcache",
1016                                 qcache_queries_in_cache, db);
1017         }
1018
1019         if (threads_created != 0)
1020         {
1021                 gauge_submit ("threads", "running",
1022                                 threads_running, db);
1023                 gauge_submit ("threads", "connected",
1024                                 threads_connected, db);
1025                 gauge_submit ("threads", "cached",
1026                                 threads_cached, db);
1027
1028                 derive_submit ("total_threads", "created",
1029                                 threads_created, db);
1030         }
1031
1032         traffic_submit  (traffic_incoming, traffic_outgoing, db);
1033
1034         if (mysql_version >= 50600 && db->innodb_stats)
1035                 mysql_read_innodb_stats (db, con);
1036
1037         if (db->master_stats)
1038                 mysql_read_master_stats (db, con);
1039
1040         if ((db->slave_stats) || (db->slave_notif))
1041                 mysql_read_slave_stats (db, con);
1042
1043         if (db->wsrep_stats)
1044                 mysql_read_wsrep_stats (db, con);
1045
1046         return (0);
1047 } /* int mysql_read */
1048
1049 void module_register (void)
1050 {
1051         plugin_register_complex_config ("mysql", mysql_config);
1052 } /* void module_register */