Queries | mysql.global_status.queries.count | Count | The number of queries executed by this server |
Slow Queries | mysql.global_status.slow_queries.count | Count | The number of queries that have taken more than long_query_time seconds. This counter increments regardless of whether the slow query log is enabled. For information about that log, see Section 5.4.5, “The Slow Query Log”. |
Table Locks Waited | mysql.global_status.table_locks_waited.count | Count | The number of times that a request for a table lock could not be granted immediately and a wait was needed. If this is high and you have performance problems, you should first optimize your queries, and then either split your table or tables or use replication. |
Table Locks Immediate | mysql.global_status.table_locks_immediate.count | Count | The number of times that a request for a table lock could be granted immediately. |
Current Connections | mysql.global_status.current_connections | Count | The number of currently open connections. |
Threads Running | mysql.global_status.threads_running | Count | The number of threads that are not sleeping. |
Innodb Buffer Pool Pages Data | mysql.global_status.innodb_buffer_pool_pages_data | Count | The number of pages in the InnoDB buffer pool containing data. The number includes both dirty and clean pages. When using compressed tables, the reported Innodb_buffer_pool_pages_data value may be larger than Innodb_buffer_pool_pages_total |
Innodb Buffer Pool Pages Dirty | mysql.global_status.innodb_buffer_pool_pages_dirty | Count | The current number of dirty pages in the InnoDB buffer pool. |
Innodb Buffer Pool Pages Free | mysql.global_status.innodb_buffer_pool_pages_free | Count | The number of free pages in the InnoDB buffer pool. |
Innodb Buffer Pool Pages Total | mysql.global_status.innodb_buffer_pool_pages_total | Count | The total size of the InnoDB buffer pool, in pages. When using compressed tables, the reported Innodb_buffer_pool_pages_data value may be larger than Innodb_buffer_pool_pages_total |
Innodb Data Reads | mysql.global_status.innodb_data_reads.count | Count | The total number of data reads (OS file reads). |
Innodb Data Writes | mysql.global_status.innodb_data_writes.count | Count | The total number of data writes. |
Innodb Data Read | mysql.global_status.innodb_data_read.count | Byte | The total amount of data read from files. |
Innodb Data Written | mysql.global_status.innodb_data_written.count | Byte | The total amount of data written. |