Check mysql-innodb-log-waits¶
Overview¶
Checks how often InnoDB had to wait for log writes to be flushed because the log buffer was too small in MySQL/MariaDB. If waits occur, the innodb_log_buffer_size should be increased.
Important Notes:
Data Collection:
Queries
SHOW GLOBAL VARIABLESforinnodb_log_buffer_sizeQueries
SHOW GLOBAL STATUSforInnodb_log_waitsandInnodb_log_writesLogic is taken from MySQLTuner script:mysql_innodb(), v1.8.3
Fact Sheet¶
Fact |
Value |
|---|---|
Check Plugin Download |
https://github.com/Linuxfabrik/monitoring-plugins/tree/main/check-plugins/mysql-innodb-log-waits |
Nagios/Icinga Check Name |
|
Check Interval Recommendation |
Every hour |
Can be called without parameters |
Yes |
Runs on |
Cross-platform |
Compiled for Windows |
No |
3rd Party Python modules |
|
Help¶
usage: mysql-innodb-log-waits [-h] [-V] [--always-ok]
[--defaults-file DEFAULTS_FILE]
[--defaults-group DEFAULTS_GROUP]
[--timeout TIMEOUT]
Checks how often InnoDB had to wait for log writes to be flushed because the
log buffer was too small in MySQL/MariaDB. Frequent waits indicate that
innodb_log_buffer_size should be increased. Alerts when log waits occur too
frequently.
options:
-h, --help show this help message and exit
-V, --version show program's version number and exit
--always-ok Always returns OK.
--defaults-file DEFAULTS_FILE
MySQL/MariaDB cnf file to read user, host and password
from (instead of specifying them on the command line).
Example: `/var/spool/icinga2/.my.cnf`. Default:
/var/spool/icinga2/.my.cnf
--defaults-group DEFAULTS_GROUP
Group/section to read from in the cnf file. Default:
client
--timeout TIMEOUT Network timeout in seconds. Default: 3 (seconds)
Usage Examples¶
./mysql-innodb-log-waits --defaults-file=/var/spool/icinga2/.my.cnf
Output:
0.0 InnoDB log buffer waits / 867.6K writes.
States¶
WARN if
Innodb_log_waits> 0.--always-oksuppresses all alerts and always returns OK.
Perfdata / Metrics¶
Name |
Type |
Description |
|---|---|---|
mysql_innodb_log_buffer_size |
Bytes |
Size in bytes of the buffer for writing InnoDB redo log files to disk. Increasing this means larger transactions can run without needing to perform disk I/O before committing. |
mysql_innodb_log_waits |
Continuous Counter |
Number of times InnoDB was forced to wait for log writes to be flushed due to the log buffer being too small. |
mysql_innodb_log_writes |
Continuous Counter |
Number of writes to the InnoDB redo log. |
Credits, License¶
Authors: Linuxfabrik GmbH, Zurich
License: The Unlicense, see LICENSE file.
Credits:
heavily inspired by MySQLTuner (https://github.com/major/MySQLTuner-perl)