| Queries | mariadb.global_status.queries.count | The number of statements executed by the server. This variable includes statements executed within stored programs, unlike the Questions variable. It does not count COM_PING or COM_STATISTICS commands. | Count |
| Slow Queries | mariadb.global_status.slow_queries.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. | Count |
| Table Locks Waited | mariadb.global_status.table_locks_waited.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. | Count |
| Table Locks Immediate | mariadb.global_status.table_locks_immediate.count | The number of times that a request for a table lock could be granted immediately. | Count |
| Current Connections | mariadb.global_status.current_connections | The number of currently open connections. | Count |
| Threads Running | mariadb.global_status.threads_running | The number of threads that are not sleeping. | Count |
| Threads Created | mariadb.global_status.threads_created | The number of threads created to handle connections. If Threads_created is big, you may want to increase the thread_cache_size value. The cache miss rate can be calculated as Threads_created/Connections. | Count |
| Innodb Buffer Pool Pages Data | mariadb.global_status.innodb_buffer_pool_pages_data | 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 | Count |
| Innodb Buffer Pool Pages Dirty | mariadb.global_status.innodb_buffer_pool_pages_dirty | The current number of dirty pages in the InnoDB buffer pool. | Count |
| Innodb Buffer Pool Pages Free | mariadb.global_status.innodb_buffer_pool_pages_free | The number of free pages in the InnoDB buffer pool. | Count |
| Innodb Buffer Pool Pages Total | mariadb.global_status.innodb_buffer_pool_pages_total | 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 | Count |
| Innodb Data Reads | mariadb.global_status.innodb_data_reads.count | The total number of data reads (OS file reads). | Count |
| Innodb Data Writes | mariadb.global_status.innodb_data_writes.count | The total number of data writes. | Count |
| Innodb Data Read | mariadb.global_status.innodb_data_read.count | The total amount of data read from files. | Byte |
| Innodb Data Written | mariadb.global_status.innodb_data_written.count | The total amount of data written. | Byte |
| Innodb Buffer Pool Reads | mariadb.global_status.innodb_buffer_pool_reads | The number of logical reads that InnoDB could not satisfy from the buffer pool, and had to read directly from disk. | Count |
| Innodb Buffer Pool Read Requests | mariadb.global_status.innodb_buffer_pool_read_requests | The number of logical read requests. | Count |
| Availability | mariadb.global_status.availability | Whether or not a connection can be made to the database | Percent |
| Status | mariadb.global_status.status | A status of AVAILABLE is returned if we can query the database | State |
| Uptime | mariadb.global_status.uptime | The time in seconds that the mariadb server has been running since it was started. | Second |
| Handler Rollback | mariadb.global_status.handler_rollback.count | The number of requests for a storage engine to perform a rollback operation. | Count |
| Innodb Log Waits | mariadb.global_status.innodb_log_waits.count | The number of times that the log buffer was too small and a wait was required for it to be flushed before continuing. | Count |
| Innodb Row Lock Current Waits | mariadb.global_status.innodb_row_lock_current_waits | The number of row locks currently waited for by operations on InnoDB tables. | Count |
| Innodb Row Lock Time (Avg) | mariadb.global_status.innodb_row_lock_time_avg | The average time to acquire a row lock for InnoDB tables | MilliSecond |
| Innodb Row Lock Waits | mariadb.global_status.innodb_row_lock_waits.count | The number of times operations on InnoDB tables had to wait for a row lock. | Count |
| Opened Tables | mariadb.global_status.opened_tables.count | The number of tables that have been opened. If Opened_tables is big, your table_open_cache value is probably too small. | Count |
| Open Files | mariadb.global_status.open_files | The number of files that are open. This count includes regular files opened by the server. It does not include other types of files such as sockets or pipes. Also, the count does not include files that storage engines open using their own internal functions rather than asking the server level to do so. | Count |
| Open Tables | mariadb.global_status.open_tables | The number of tables that are open. | Count |
| Query Cache Free Memory | mariadb.global_status.qcache_free_memory | The amount of free memory for the query cache. | Byte |
| Query Cache Hits | mariadb.global_status.qcache_hits.count | The number of query cache hits. | Count |
| Query Cache not Cached | mariadb.global_status.qcache_not_cached.count | The number of noncached queries (not cacheable, or not cached due to the query_cache_type setting). | Count |
| Aborted Clients | mariadb.global_status.aborted_clients.count | The number of connections that were aborted because the client died without closing the connection properly. | Count |
| Aborted Connects | mariadb.global_status.aborted_connects.count | The number of failed attempts to connect to the MySQL server. | Count |
| Connection Errors Max Connections | mariadb.global_status.connection_errors_max_connections.count | The number of connections refused because the server max_connections limit was reached. | Count |
| Max Used Connections | mariadb.global_status.max_used_connections | The maximum number of connections that have been in use simultaneously since the server started. | Count |
| Questions | mariadb.global_status.questions.count | The number of statements executed by the server. This includes only statements sent to the server by clients and not statements executed within stored programs, unlike the Queries variable. This variable does not count COM_PING, COM_STATISTICS, COM_STMT_PREPARE, COM_STMT_CLOSE, or COM_STMT_RESET commands. | Count |