mysql plugin: adding select and sort counters
authorWilson Felipe <wfelipe@gmail.com>
Mon, 4 Feb 2013 19:31:11 +0000 (11:31 -0800)
committerFlorian Forster <octo@collectd.org>
Wed, 6 Aug 2014 13:34:33 +0000 (15:34 +0200)
src/mysql.c
src/types.db

index df1e7b6..0f8d5a6 100644 (file)
@@ -738,6 +738,20 @@ static int mysql_read (user_data_t *ud)
                        else if (strcmp (key, "Innodb_rows_updated") == 0)
                                counter_submit ("mysql_innodb_rows", "updated", val, db);
                }
+               else if (strncmp (key, "Select_",
+                                       strlen ("Select_")) == 0)
+               {
+                       counter_submit ("mysql_select",
+                                       key + strlen ("Select_"),
+                                       val, db);
+               }
+               else if (strncmp (key, "Sort_",
+                                       strlen ("Sort_")) == 0)
+               {
+                       counter_submit ("mysql_sort",
+                                       key + strlen ("Sort_"),
+                                       val, db);
+               }
        }
        mysql_free_result (res); res = NULL;
 
index e24a78c..fb95142 100644 (file)
@@ -110,6 +110,8 @@ mysql_bpool_counters        value:DERIVE:0:U
 mysql_innodb_data      value:DERIVE:0:U
 mysql_innodb_dblwr     value:DERIVE:0:U
 mysql_innodb_rows      value:DERIVE:0:U
+mysql_select           value:DERIVE:0:U
+mysql_sort             value:DERIVE:0:U
 nfs_procedure          value:DERIVE:0:U
 nginx_connections      value:GAUGE:0:U
 nginx_requests         value:DERIVE:0:U