共计 3599 个字符,预计需要花费 9 分钟才能阅读完成。
- 环境
CentOS 7.6
zabbix-agent 4.0.14
MySQL 5.7 - 创建监控 MySQL 用户
用 root 用户登录 MySQL,创建授权用户信息。#grant usage on . to‘jiankong’@’mysql服务器ip’identified by‘xxxxxx’; #flush privileges;
这里直接使用 root 用户测试。
- agent 端配置
zabbix-agent 没有安装,使用 yum install -y zabbix-agent 命令安装。
修改 zabbix 配置默认的 userparameter_mysql.conf 文件
目录:/etc/zabbix/zabbix_agentd.d/userparameter_mysql.conf
注释掉默认的 mysql status 配置项,增加监控脚本文件。
grep -Ev ‘^$|^#’ /etc/zabbix/zabbix_agentd.d/userparameter_mysql.confUserParameter=mysql.status[*],/etc/zabbix/scripts/chk_mysql.sh $1 UserParameter=mysql.ping,mysqladmin -uroot -pxxxxxx -h '127.0.0.1' ping 2> /dev/null | grep -c alive UserParameter=mysql.version,mysql -V
/etc/zabbix/scripts/chk_mysql.sh 数据库监控脚本。
#!/bin/bash # ------------------------------------------------------------------------------- # FileName: check_mysql.sh # Revision: 1.0 # Date: 2020/04/12 # Author: Joey King # Email: # Website: # Description: Zabbix Mysql # Notes: None # ------------------------------------------------------------------------------- # User MYSQL_USER='root' # PASSWD MYSQL_PWD='xxxxxx' # HOST IP MYSQL_HOST='127.0.0.1' #MYSQL_HOST='10.10.10.10' # PORT MYSQL_PORT='3306' # CONN MYSQL_CONN="/usr/bin/mysqladmin -u${MYSQL_USER} -p${MYSQL_PWD} -h${MYSQL_HOST} -P${MYSQL_PORT}" # CHK PARAMETERS if [$# -ne "1" ];then echo "arg error!" fi # COLLECTION DATA case $1 in Uptime) result=`${MYSQL_CONN} status 2> /dev/null|cut -f2 -d":"|cut -f1 -d"T"` echo $result ;; Com_update) result=`${MYSQL_CONN} extended-status 2> /dev/null|grep -w "Com_update"|cut -d"|" -f3` echo $result ;; Slow_queries) result=`${MYSQL_CONN} status 2> /dev/null|cut -f5 -d":"|cut -f1 -d"O"` echo $result ;; Com_select) result=`${MYSQL_CONN} extended-status 2> /dev/null|grep -w "Com_select"|cut -d"|" -f3` echo $result ;; Com_rollback) result=`${MYSQL_CONN} extended-status 2> /dev/null|grep -w "Com_rollback"|cut -d"|" -f3` echo $result ;; Questions) result=`${MYSQL_CONN} status 2> /dev/null|cut -f4 -d":"|cut -f1 -d"S"` echo $result ;; Com_insert) result=`${MYSQL_CONN} extended-status 2> /dev/null|grep -w "Com_insert"|cut -d"|" -f3` echo $result ;; Com_delete) result=`${MYSQL_CONN} extended-status 2> /dev/null|grep -w "Com_delete"|cut -d"|" -f3` echo $result ;; Com_commit) result=`${MYSQL_CONN} extended-status 2> /dev/null|grep -w "Com_commit"|cut -d"|" -f3` echo $result ;; Bytes_sent) result=`${MYSQL_CONN} extended-status 2> /dev/null|grep -w "Bytes_sent" |cut -d"|" -f3` echo $result ;; Bytes_received) result=`${MYSQL_CONN} extended-status 2> /dev/null|grep -w "Bytes_received" |cut -d"|" -f3` echo $result ;; Com_begin) result=`${MYSQL_CONN} extended-status 2> /dev/null|grep -w "Com_begin"|cut -d"|" -f3` echo $result ;; Threads_connected) result=`${MYSQL_CONN} extended-status 2> /dev/null|grep -w "Threads_connected"|cut -d"|" -f3` echo $result ;; Threads_running) result=`${MYSQL_CONN} extended-status 2> /dev/null|grep -w "Threads_running"|cut -d"|" -f3` echo $result ;; *) echo "Usage:$0(Uptime|Com_update|Slow_queries|Com_select|Com_rollback|Questions|Com_insert|Com_delete|Com_commit|Bytes_sent|Bytes_received|Com_begin)" ;; esac
这里,遇到个坑,花了近 2 天时间。监控脚本配置后,在 zabbix-server 测试能否从 agent 端获取到数据,用 zabbix_get 测试有返回数据。
zabbix_get -s10.10.10.10 -p 10050 -k "mysql.status[Threads_connected]"
但返回结果是:
上图中将 Warning 信息也显示出来,是由于监控脚本文件中有配置密码信息,所以给显示出来,但其实是有问题的,zabbix-server 端用 zabbix-get 获取信息后,读取的返回结果在 zabbix Web 页面显示,是读取的第一行返回信息,并非读取返回第二行的真实信息。当时认为是个 Warning 信息,没在意(在这认栽了)。
在 zabbix-Web 监控项中显示 type “string” is not suitable for value type “Numeric (unsigned)”。
接下来就是解决问题,比较简单,就是将 Warning 信息不显示出来,扔到垃圾桶。
修改监控脚本,脚本中加入 ” 2> /dev/null “
zabbix-agent 服务重启解决,service zabbix-agent restart
再次 zabbix-server 端用 zabbix-get 测试获取返回结果: - zabbix 自定义 Mysql 监控项
以上监控脚本中关于 Mysql 的连接数和并发数情况,即监控脚本中 Threads_connected 和 Threads_running 的信息。在 zabbix Mysql 监控模板中是没有这两块的监控信息。
脚本中增加 Threads_connected 和 Threads_running 的信息,详见上面监控脚本。接下就是在 zabbix 数据库监控默认模板 Template DB MySQL 上创建配置监控项、创建图形、创建触发器。
4.1 创建监控项
4.2 创建图形
4.3 创建触发器
给 Threads_connected 连接数创建触发器。
:
正文完
星哥玩云-微信公众号