Zabbix4监控Mysql5.7

  1. 环境
    centos 7.6
    zabbix-agent 4.0.14
    mysql 5.7
  2. 创建监控MySQL用户
    用root用户登录MySQL,创建授权用户信息。
    #grant usage on . to ‘jiankong’@’mysql服务器ip’ identified by ‘xxxxxx’;
    #flush privileges;

    这里直接使用root用户测试。

  3. 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.conf
    UserParameter=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]"

    但返回结果是:
    Zabbix4监控Mysql5.7
    上图中将Warning信息也显示出来,是由于监控脚本文件中有配置密码信息,所以给显示出来,但其实是有问题的,zabbix-server端用zabbix-get获取信息后,读取的返回结果在zabbix Web页面显示,是读取的第一行返回信息,并非读取返回第二行的真实信息。当时认为是个Warning信息,没在意(在这认栽了)。
    在zabbix-Web监控项中显示type "string" is not suitable for value type "Numeric (unsigned)"。
    Zabbix4监控Mysql5.7
    接下来就是解决问题, 比较简单,就是将Warning信息不显示出来,扔到垃圾桶。
    修改监控脚本,脚本中加入 " 2> /dev/null "
    Zabbix4监控Mysql5.7
    zabbix-agent服务重启解决,service zabbix-agent restart
    再次zabbix-server端用zabbix-get测试获取返回结果:
    Zabbix4监控Mysql5.7

  4. 钉钉

猜你喜欢

转载自blog.51cto.com/10874766/2487301