Zabbix自訂監控MySQL效能狀態

來源:互聯網
上載者:User

標籤:sel   監控   enable   item   begin   使用者   list   source   llb   

環境是CentOS 6.5 x86_64系統

Zabbix版本:3.0.4

MySQL Server 版本:5.6.29 二進位安裝

zabbix_agentd.conf的設定檔如下:

[[email protected] alertscripts]# cat  /usr/local/zabbix/etc/zabbix_agentd.conf | grep -v ‘^#‘ | grep -v ‘^$‘
LogFile=/tmp/zabbix_agentd.log
EnableRemoteCommands=1
Server=10.18.3.193
ListenPort=10050
ServerActive=10.18.3.193
Hostname=10.18.3.191
AllowRoot=1
Include=/usr/local/zabbix/etc/zabbix_agentd.conf.d/*.conf
UnsafeUserParameters=1
#下面兩行是自訂的key
UserParameter=mysql.slave,/usr/local/zabbix/share/zabbix/alertscripts/check_mysql_slave.sh | grep -c ‘ok‘
UserParameter=mysql.status[*],/usr/local/zabbix/share/zabbix/alertscripts/mysql_server_status.sh $1

查看mysql授權:

mysql授權要求輸入密碼才能訪問,但是使用密碼mysql會提示純文字密碼,就會有下面的提示:

[[email protected] alertscripts]# sh check_mysql_slave.sh 
Warning: Using a password on the command line interface can be insecure.
ok -slave is running

解決辦法如下:

[[email protected] alertscripts]# cat /etc/my.cnf | tail -4
[client]
user = root
host = localhost
password = [email protected]

再次運行指令碼:

[[email protected] alertscripts]# sh check_mysql_slave.sh 
ok -slave is running

mysql主從監控指令碼,指令碼中去掉使用者,密碼直接使用命令。

[[email protected] alertscripts]# cat check_mysql_slave.sh 
#!/bin/bash
declare -a slave_is
slave_is=($(/data/mysql/bin/mysql -e "show slave status\G"|grep -E "Slave_IO_Running|Slave_SQL_Running:"|awk ‘{print $2}‘))
if [ "${slave_is[0]}" = "Yes" -a "${slave_is[1]}" = "Yes" ];then
    echo "ok -slave is running"
    exit 0
else
    echo "down -slave is not running"
    exit 2
fi

mysql_server_status指令碼,這塊上面my.cnf填寫以後,使用mysqladmin也就不提示了:

[[email protected] alertscripts]# cat mysql_server_status.sh 
#!/bin/bash
source /etc/profile
mysqladmin=`which mysqladmin`
case $1 in 
    Uptime) 
        result=`${mysqladmin} status|cut -f2 -d":"|cut -f1 -d"T"` 
        echo $result 
        ;; 
    Com_update) 
        result=`${mysqladmin} extended-status |grep -w "Com_update"|cut -d"|" -f3` 
        echo $result 
        ;; 
    Slow_queries) 
        result=`${mysqladmin} status |cut -f5 -d":"|cut -f1 -d"O"` 
        echo $result 
        ;; 
    Com_select) 
        result=`${mysqladmin} extended-status |grep -w "Com_select"|cut -d"|" -f3` 
        echo $result 
                ;; 
    Com_rollback) 
        result=`${mysqladmin} extended-status |grep -w "Com_rollback"|cut -d"|" -f3` 
                echo $result 
                ;; 
    Questions) 
        result=`${mysqladmin} status|cut -f4 -d":"|cut -f1 -d"S"` 
                echo $result 
                ;; 
    Com_insert) 
        result=`${mysqladmin} extended-status |grep -w "Com_insert"|cut -d"|" -f3` 
                echo $result 
                ;; 
    Com_delete) 
        result=`${mysqladmin} extended-status |grep -w "Com_delete"|cut -d"|" -f3` 
                echo $result 
                ;; 
    Com_commit) 
        result=`${mysqladmin} extended-status |grep -w "Com_commit"|cut -d"|" -f3` 
                echo $result 
                ;; 
    Bytes_sent) 
        result=`${mysqladmin} extended-status |grep -w "Bytes_sent" |cut -d"|" -f3` 
                echo $result 
                ;; 
    Bytes_received) 
        result=`${mysqladmin} extended-status |grep -w "Bytes_received" |cut -d"|" -f3` 
                echo $result 
                ;; 
    Com_begin) 
        result=`${mysqladmin} extended-status |grep -w "Com_begin"|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

在zabbix_server擷取key值,或是查看zabbix_server.log檔案都可以排錯。

[[email protected] bin]# ./zabbix_get -s 10.18.3.191 -k mysql.status[Uptime]
ZBX_NOTSUPPORTED: Unsupported item key.
[[email protected] bin]# ./zabbix_get -s 10.18.3.191 -k mysql.status[Uptime]
/usr/local/zabbix/share/zabbix/alertscripts/mysql_server_status.sh: line 4: mysqladmin: command not found
[[email protected] bin]# ./zabbix_get -s 10.18.3.191 -k mysql.status[Uptime]
414242

zabbix_agent.log可以看到已經擷取到自訂的key

添加自訂模板,模板名稱隨意給個和mysql相關的

建立應用集

添加監控項,一個key一個key添加,把指令碼的key都添加進去

mysql 狀態這塊只做了圖形查看,並沒有做觸發器,只做了主從的觸發器,需要的可以自己添加

添加完成後可以添加一台mysql資料庫查看下最新資料,是否成功了

 

更多內容:http://www.wangzhanjianshegs.com/網站建設

Zabbix自訂監控MySQL效能狀態

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.