1818IP-服务器技术教程,云服务器评测推荐,服务器系统排错处理,环境搭建,攻击防护等

当前位置:首页 - 运维 - 正文

君子好学,自强不息!

Zabbix监控Mysql数据库性能

2022-11-06 | 运维 | gtxyzz | 555°c
A+ A-

在之前的博文里面写过如何通过Zabbix监控mysql主从同步是否OK,mysql从库是否有延时(Seconds_Behind_Master)主库,当mysql主从有异常时通过Email或者SMS通知DBA和系统人员。除此之外,Zabbix还可以监控mysql slow queries,mysql version,uptime,alive等。下面通过Zabbix Graphs实时查看的SQL语句操作情况和mysql发送接收的字节数。

1.Zabbix官方提供的监控mysql的模板Template App MySQL,可以看到相关的Items和key。

/zb_users/upload/2022/10/23/20221017181732-634d9c3cd6faa.jpg

2.把该模板Template App MySQL Link到相关的主机上面,发现Item的Status是不可用的,因为key的值是通过Mysql用户查看"show global status"信息或者用mysqladmin命令查看status或extended-status的信息而取的值。

mysql>showglobalstatus;
mysql>showstatus;

3.结合官方提供的key编写Shell脚本,从数据库中取出Items的key的值。

[root@monitorscripts]#catcheckmysqlperformance.sh
#!/bin/sh
#Createbysfzhang2014.02.20
MYSQL_SOCK="/data/mysql/3306/mysql.sock"
MYSQL_PWD=`cat/data/mysql/3306/.mysqlpassword`
ARGS=1
if[$#-ne"$ARGS"];then
echo"Pleaseinputonearguement:"
fi
case$1in
Uptime)
result=`mysqladmin-uroot-p${MYSQL_PWD}-S$MYSQL_SOCKstatus|cut-f2-d":"|cut-f1-d"T"`
echo$result
;;
Com_update)
result=`mysqladmin-uroot-p${MYSQL_PWD}-S$MYSQL_SOCKextended-status|grep-w"Com_update"|cut-d"|"-f3`
echo$result
;;
Slow_queries)
result=`mysqladmin-uroot-p${MYSQL_PWD}-S$MYSQL_SOCKstatus|cut-f5-d":"|cut-f1-d"O"`
echo$result
;;
Com_select)
result=`mysqladmin-uroot-p${MYSQL_PWD}-S$MYSQL_SOCKextended-status|grep-w"Com_select"|cut-d"|"-f3`
echo$result
;;
Com_rollback)
result=`mysqladmin-uroot-p${MYSQL_PWD}-S$MYSQL_SOCKextended-status|grep-w"Com_rollback"|cut-d"|"-f3`
echo$result
;;
Questions)
result=`mysqladmin-uroot-p${MYSQL_PWD}-S$MYSQL_SOCKstatus|cut-f4-d":"|cut-f1-d"S"`
echo$result
;;
Com_insert)
result=`mysqladmin-uroot-p${MYSQL_PWD}-S$MYSQL_SOCKextended-status|grep-w"Com_insert"|cut-d"|"-f3`
echo$result
;;
Com_delete)
result=`mysqladmin-uroot-p${MYSQL_PWD}-S$MYSQL_SOCKextended-status|grep-w"Com_delete"|cut-d"|"-f3`
echo$result
;;
Com_commit)
result=`mysqladmin-uroot-p${MYSQL_PWD}-S$MYSQL_SOCKextended-status|grep-w"Com_commit"|cut-d"|"-f3`
echo$result
;;
Bytes_sent)
result=`mysqladmin-uroot-p${MYSQL_PWD}-S$MYSQL_SOCKextended-status|grep-w"Bytes_sent"|cut-d"|"-f3`
echo$result
;;
Bytes_received)
result=`mysqladmin-uroot-p${MYSQL_PWD}-S$MYSQL_SOCKextended-status|grep-w"Bytes_received"|cut-d"|"-f3`
echo$result
;;
Com_begin)
result=`mysqladmin-uroot-p${MYSQL_PWD}-S$MYSQL_SOCKextended-status|grep-w"Com_begin"|cut-d"|"-f3`
echo$result
;;

*)
echo"Usage:$0(Uptime|Com_update|Slow_queries|Com_select|Com_rollback|Questions)"
;;
esac

4.在Zabbix_agentd.conf里面添加UserParameter,格式如下,对于Zabbix来说,脚本其实就是一个插件。

UserParameter=mysql.version,mysql-V
UserParameter=mysql.ping,mysqladmin-uroot-p123456-S/data/mysql/3306/mysql.sockping|grep-calive
UserParameter=mysql.status[*],/etc/zabbix/scripts/checkmysqlperformance.sh$1$2

5.重启agentd服务器,然后在zabbix server用zabbix_get就可以取到key的值。

/zb_users/upload/2022/10/23/20221017181734-634d9c3e571b9.jpg

6.在zabbix前端可以实时查看SQL语句每秒钟的操作次数。

/zb_users/upload/2022/10/23/20221017181735-634d9c3fc1664.jpg

7.在zabbix前端可以实时查看mysql发送接收的字节数。其中bytes received表示从所有客户端接收到的字节数,bytes sent表示发送给所有客户端的字节数。

/zb_users/upload/2022/10/23/20221017181737-634d9c4147437.jpg

总结

把该脚本放到要监控的服务器上面(Modify mysql user and password),修改UserParameter的参数并重启agentd,Link官方提供的Template App MySQL模板即可。

我这里是测试环境用root账号,线上服务器安全期间可以给mysql用户授权readonly权限。

根据实际的需求,除了监控上述监控项之外,还可以监控mysql processlist,Innodb等。

本文来源:1818IP

本文地址:https://www.1818ip.com/post/7343.html

免责声明:本文由用户上传,如有侵权请联系删除!

发表评论

必填

选填

选填

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。