check_mysql_health

nagios监控mysql插件:

http://labs.consol.de/lang/en/nagios/check_mysql_health/

check_mysql_health

Posted on July 6th, 2009 by admin

Description

check_mysql_health is a plugin to check various parameters of a MySQL database.

Command line parameters

  • –hostname

    The database server which should be monitored. In case of "localhost" this parameter can be omitted.
  • –username

    The database user.
  • –password

    Password of the database user.
  • –mode

    With the mode-parameter you tell the plugin what it should do. See the list of possible values further down.
  • –name

    Here the check can be limited to a single object. (Momentarily this parameter is only used for mode=sql)
  • –name2

    If you use –mode=sql, then the SQL-Statement appears in the output and performance values. With the parameter name2 you’re able to specify a string for this..
  • –warning

    Determined values outside of this range trigger a WARNING.
  • –critical

    Determined values outside of this range trigger a CRITICAL.
  • –environment =

    With this you can pass environment variables to the script. Multiple declarations are possible.
  • –method

    With this parameter you tell the plugin how it should connect to the database. (dbi for using DBD::mysql (default), mysql for mysql-Tool).
  • –units

    The declaration from units serves the "beautification" of the output from mode=sql

Use the option –mode with various keywords to tell the Plugin which values it should determine and check.

KeywordDescriptionRange
connection-timeDetermines how long connection establishment and login take0..n Seconds (1, 5)
uptimeTime since start of the database server (recognizes DB-Crash+Restart)0..n Seconds (10:, 5: Minutes)
threads-connectedNumber of open connections1..n (10, 20)
threadcache-hitrateHitrate in the Thread-Cache0%..100% (90:, 80:)
q[uery]cache-hitrateHitrate in the Query Cache0%..100% (90:, 80:)
q[uery]cache-lowmem-prunesDisplacement out of the Query Cache due to memory shortnessn/sec (1, 10)
[myisam-]keycache-hitrateHitrate in the Myisam Key Cache0%..100% (99:, 95:)
[innodb-]bufferpool-hitrateHitrate in the InnoDB Buffer Pool0%..100% (99:, 95:)
[innodb-]bufferpool-wait-freeRate of the InnoDB Buffer Pool Waits0..n/sec (1, 10)
[innodb-]log-waitsRate of the InnoDB Log Waits0..n/sec (1, 10)
tablecache-hitrateHitrate in the Table-Cache0%..100% (99:, 95:)
table-lock-contentionRate of failed table locks0%..100% (1, 2)
index-usageSum of the Index-Utilization (in contrast to Full Table Scans)0%..100% (90:, 80:)
tmp-disk-tablesPercent of the temporary tables that were created on the disk instead in memory0%..100% (25, 50)
slow-queriesRate of queries that were detected as "slow"0..n/sec (0.1, 1)
long-running-procsSum of processes that are runnning longer than 1 minute0..n (10, 20)
slave-lagDelay between Master and Slave0..n Seconds
slave-io-runningChecks if the IO-Thread of the Slave-DB is running 
slave-sql-runningChecks if the SQL-Thread of the Slave-DB is running 
sqlResult of any SQL-Statement that returns a number. The statement itself is passed over with the parameter –name. A Label for the performance data output can be passed over with the parameter –name2. The parameter –units can add units to the output (%, c, s, MB, GB,..). If the SQL-Statement includeds special characters or spaces, it can first be encoded with the mode encode.0..n
open-filesNumber of open files (of upper limit)0%..100% (80, 95)
encodeReads standard input (STDIN) and outputs an encoded string. 
cluster-ndb-runningChecks if all cluster nodes are running. 

Depending on the chosen mode two labels can appear in the performance data output.

= and =

The determinded values apply to the complete runtime of the database and to the time since the last run of check_mysl_health.

Example: qcache_hitrate=71.63%;90:;80: qcache_hitrate_now=8.25%

The Hitrate of the Query-Cache is calculated from Qcache_hits / ( Qcache_hits + Com_select ). This values are continuously increased. A serious change in access behaviour affects the hitrate only slowly. To be able to recognize temporarily fluctuations in the hitrate and, for example, assign it to an application update, the value qcache_hitrate_now is printed out additionally. This value is calculated through the difference (delta) between Qcache_hits and Com_select (actual value of the variables minus the value since the last run from check_mysql_health).

Here the command line parameter –lookback is used.

  • if this is missing, than qcache_hitrate_now is calculated from the difference (delta) between Qcache_hits and Com_select since the last run from check_mysql_health. Important for the exitcode of the plugin is the long-term result qcache_hitrate (since database start). 
  • if –lookback is specified with an argument n, than qcache_hitrate_now is calculated from the difference (delta) from Qcache_hits and Com_select since the last n seconnds.

    For example: With –lookback 3600 you’ll get the average hitrate of the last hour, calculated back from the last plugin execution. The exitcode now also depends on this short-term test result.

It’s recommended to use –lookback but specify at least half an hour (–lookback 1800) because the now-value underlies a heavy fluctuation which would lead to frequent alarms.

Pleae note, that the thresholds must be specified according to the Nagios plug-in development Guidelines.

"10" means "Alarm, if > 10" und

"90:" means "Alarm, if < 90"

Connect to the database

Creating a database user

In order to be able to collect the needed information from the database a database user with specific privileges is required:

GRANT usage ON *.* TO 'nagios'@'nagiosserver' IDENTIFIED BY 'nagiospassword'

Connectionstring

To connect to the database you use the parameters –username and –password. The database server which should be used can be specified more precise with –hostname and –socket or –port.

Use of environment variables

It’s possible to omit –hostname, –username and –password as well as –socket and –port completely, if you provide the corresponding values in environment variables. Since Version 3.x it is possible to extend service definitions in Nagios through own attributes (custom object variables). These will appear during the exectution of the check command in the environment.

The environment variables are:

  • NAGIOS__SERVICEMYSQL_HOST (_mysql_host in the service definition)
  • NAGIOS__SERVICEMYSQL_USER (_mysql_user in the service definition)
  • NAGIOS__SERVICEMYSQL_PASS (_mysql_pass in the service definition)
  • NAGIOS__SERVICEMYSQL_PORT (_mysql_port in the service definition)
  • NAGIOS__SERVICEMYSQL_SOCK (_mysql_sock in the service definition)

Examples

nagios$ check_mysql_health --hostname mydb3 --username nagios --password nagios 
--mode connection-time
OK - 0.03 seconds to connect as nagios | connection_time=0.0337s;1;5
 
nagios$ check_oracle_health --mode=connection-time
OK - 0.17 seconds to connect  | connection_time=0.1740;1;5
 
nagios$ check_mysql_health --mode querycache-hitrate
CRITICAL - query cache hitrate 70.97% | qcache_hitrate=70.97%;90:;80: qcache_hitrate_now=72.25% selects_per_sec=270.00
 
nagios$ check_mysql_health --mode querycache-hitrate 
--warning 80: --critical 70:
WARNING - query cache hitrate 70.82% | qcache_hitrate=70.82%;80:;70: qcache_hitrate_now=62.82% selects_per_sec=420.17
 
nagios$ check_mysql_health --mode sql 
--name 'select 111 from dual'
CRITICAL - select 111 from dual: 111 | 'select 111 from dual'=111;1;5
 
nagios$ echo 'select 111 from dual' | 
check_mysql_health --mode encode
select%20111%20from%20dual
 
nagios$ check_mysql_health --mode sql 
--name select%20111%20from%20dual
CRITICAL - select 111 from dual: 111 | 'select 111 from dual'=111;1;5
 
nagios$ check_mysql_health --mode sql 
--name select%20111%20from%20dual --name2 myval
CRITICAL - myval: 111 | 'myval'=111;1;5
 
nagios$ check_mysql_health --mode sql 
--name select%20111%20from%20dual --name2 myval --units GB
CRITICAL - myval: 111GB | 'myval'=111GB;1;5
 
nagios$ check_mysql_health --mode sql 
--name select%20111%20from%20dual --name2 myval --units GB 
--warning 100 --critical 110
CRITICAL - myval: 111GB | 'myval'=111GB;100;110

Installation

The plugin requires the installation of a mysql-client packages. The installation of the perl-modules DBI and DBD::mysql is desirable, but not mandatory.

After unpacking the archive ./configure is called. With ./configure –help some options can be printed which show some default values for compiling the plugin.

  • –prefix=BASEDIRECTORY

    Specify a directory in which check_mysql_health should be stored. (default: /usr/local/nagios)

  • –with-nagios-user=SOMEUSER

    This User will be the owner of the check_mysql_health file. (default: nagios)

  • –with-nagios-group=SOMEGROUP

    The group of the check_mysql_health plugin. (default: nagios)

  • –with-perl=PATHTOPERL

    Specify the path to the perl interpreter you wish to use. (default: perl in PATH)

Download

check_mysql_health-2.1.7.tar.gz

check_mysql_health-2.1.7.shar.gz

Manche tar-Versionen haben Probleme wegen der langen Dateinamen. In diesem Fall entpacken sie bitte das shar-Paket mit

cat check_mysql_health-xxx.shar.gz | gzip -d | sh

来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/20695384/viewspace-713272/,如需转载,请注明出处,否则将追究法律责任。

转载于:http://blog.itpub.net/20695384/viewspace-713272/

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值