原本想用python腳本監控一下mysql的,沒有找到相關資料,懶得折騰了,使用官方自帶的監控模板進行監控mysqlpython
把默認的userparameter_mysql.conf 文件進行替換爲一下內容
[root@test-mq01 zabbix_agentd.d]# cat userparameter_mysql.confmysql
#UserParameter=mysql.status[*],echo "show global status where Variable_name='$1';" | HOME=/var/lib/zabbix mysql -N | awk '{print $$2}' UserParameter=mysql.status[*],/etc/zabbix/script/mysql/chk_mysql.sh $1 #UserParameter=mysql.size[*],bash -c 'echo "select sum($(case "$3" in both|"") echo "data_length+index_length";; data|index) echo "$3_length";; free) echo "data_free";; esac)) from information_schema.tables$([[ "$1" = "all" || ! "$1" ]] || echo " where table_schema=\"$1\"")$([[ "$2" = "all" || ! "$2" ]] || echo "and table_name=\"$2\"");" | HOME=/var/lib/zabbix mysql -N' #UserParameter=mysql.ping,HOME=/var/lib/zabbix mysqladmin ping | grep -c alive UserParameter=mysql.ping,mysqladmin -u root -pRoo -P3306 -h192.168.2.252 ping | grep -c alive UserParameter=mysql.version,mysql -V
/etc/zabbix/script/mysql/chk_mysql.shweb
#!/bin/bash # ------------------------------------------------------------------------------- # FileName: check_mysql.sh # Revision: 1.0 # Date: 2018/01/31 # Author: chunk # Email: # Website: # Description: # Notes: ~ # ------------------------------------------------------------------------------- # Copyright: # License: GPL # 用戶名 MYSQL_USER='root' # 密碼 MYSQL_PWD='Root' # 主機地址/IP MYSQL_HOST='192.168.2.252' # 端口 MYSQL_PORT='3306' # 數據鏈接 MYSQL_CONN="/usr/bin/mysqladmin -u${MYSQL_USER} -p${MYSQL_PWD} -h${MYSQL_HOST} -P${MYSQL_PORT}" # 參數是否正確 if [ $# -ne "1" ];then echo "arg error!" fi # 獲取數據 case $1 in Uptime) result=`${MYSQL_CONN} status|cut -f2 -d":"|cut -f1 -d"T"` echo $result ;; Com_update) result=`${MYSQL_CONN} extended-status |grep -w "Com_update"|cut -d"|" -f3` echo $result ;; Slow_queries) result=`${MYSQL_CONN} status |cut -f5 -d":"|cut -f1 -d"O"` echo $result ;; Com_select) result=`${MYSQL_CONN} extended-status |grep -w "Com_select"|cut -d"|" -f3` echo $result ;; Com_rollback) result=`${MYSQL_CONN} extended-status |grep -w "Com_rollback"|cut -d"|" -f3` echo $result ;; Questions) result=`${MYSQL_CONN} status|cut -f4 -d":"|cut -f1 -d"S"` echo $result ;; Com_insert) result=`${MYSQL_CONN} extended-status |grep -w "Com_insert"|cut -d"|" -f3` echo $result ;; Com_delete) result=`${MYSQL_CONN} extended-status |grep -w "Com_delete"|cut -d"|" -f3` echo $result ;; Com_commit) result=`${MYSQL_CONN} extended-status |grep -w "Com_commit"|cut -d"|" -f3` echo $result ;; Bytes_sent) result=`${MYSQL_CONN} extended-status |grep -w "Bytes_sent" |cut -d"|" -f3` echo $result ;; Bytes_received) result=`${MYSQL_CONN} extended-status |grep -w "Bytes_received" |cut -d"|" -f3` echo $result ;; Com_begin) result=`${MYSQL_CONN} 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
service zabbix-agent restart
[root@tools-jenkins ~]# zabbix_get -s 192.168.2.41 -k mysql.status[Questions] 3533479678
這個其實很簡單,腳本中導入export MYSQL_PWD=<password>,或者/etc/bashrc導入export MYSQL_PWD=<password>
最後腳本少-p,大概格式是這樣:sql
#原數據鏈接 # 數據鏈接 MYSQL_CONN="/usr/bin/mysqladmin -u${MYSQL_USER} -p${MYSQL_PWD} -h${MYSQL_HOST} -P${MYSQL_PORT}" # 新數據鏈接 MYSQL_CONN="/usr/bin/mysqladmin -u${MYSQL_USER} -h${MYSQL_HOST} -P${MYSQL_PORT}"
2017年10月31日 18:11:42 Kooola的博客 閱讀數:6556 標籤: mysql監控zabbix 更多bash
我的分類: 監控運維運維
版權聲明:本文爲博主原創文章,未經博主容許不得轉載,同時也歡迎到個人我的站點:kooola.com | https://blog.csdn.net/z644041867/article/details/78406310測試
使用zabbix自帶模板對mysql進行監控時,發現mysql5.6以上版本在使用mysqladmin時會發出警告:「Warning: Using a password on the command line interface can be insecure.」 。這樣zabbix服務端獲取數值的時候,會帶有該字符串,致使報錯。spa
解決辦法試了不少,包括:.net
一、使用grep -v Warning result進行過濾。3d
二、使用mysql_config_editor進行無密碼操做。
三、修改my.conf配置文件,將mysqladmin用戶名密碼寫入配置文件。
四、在zabbix服務端尋找過濾返回值的操做。
可是以上方法都未湊效,非常尷尬。
最後實驗成功的方法是:將mysqladmin的警告信息重定向到/dev/null,忽略掉告警信息。
Com_select)
result=`/usr/bin/mysqladmin -u$MYSQL_USER -h$MYSQL_HOST -p${MYSQL_PWD} -S $MYSQL_SOCK extended-status 2>/dev/null|grep -w "Com_select"|cut -d"|" -f3`
echo $result
;;
在原有命令中加上2>/dev/null 就好了。
使用服務端的zabbix_get命令測試下:
修改以前:
[root@VM-4ecd-7f03-4bf-9a bin]# ./zabbix_get -s xx.xx.xx.xx -p 10050 -k mysql.status[Uptime]
Warning: Using a password on the command line interface can be insecure.
159486
修改以後:
[root@VM-4ecd-7f03-4bf-9a bin]# ./zabbix_get -s xx.xx.xx.xx -p 10050 -k mysql.status[Uptime]
159496
mysql告警信息不見了。
另:有人告訴我能夠經過「mysqladmin --defaults-extra-file=/etc/my.cnf」進行處理,由於問題已經解決了,就沒有去嘗試了。