溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

如何解決Shell監(jiān)控Mysql主從中斷延遲以及連接數(shù)

發(fā)布時間:2021-10-08 17:12:50 來源:億速云 閱讀:123 作者:柒染 欄目:MySQL數(shù)據(jù)庫

這篇文章給大家介紹如何解決Shell監(jiān)控Mysql主從中斷延遲以及連接數(shù),內(nèi)容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

#!/bin/bash
#日志配置
curdate=$(date +"%Y%m%d")
curtime=$(date +'%Y-%m-%d %H:%M:%S')
logname="repl_check_"$curdate".log"
logfile=/mysqldata/repl_check_log/$logname
## 兩種方式獲取需要檢測從庫主從關(guān)系,推薦第二種方式(將DB信息存入元數(shù)據(jù)表,方便管理)
# 1. 從庫實例巡檢列表,硬編碼列表
#Slave_list=("10.10.10.10:3306 10.10.10.100:3306")
# 主庫列表
#MainDB_list=("101.101.101.101:3306 101.101.101.100:3306")
# 2. 從元數(shù)據(jù)信息種獲取實例列表
Slave_list=$(/usr/bin/mysql -h227.0.0.1 -P3306 -uroot  --default-character-set=utf8 cmdb -Ne'select concat(slave_ip,":",port) from cmdb_mysql_info where slave_inst in ();')
MainDB_list=$(/usr/bin/mysql -h227.0.0.1 -P3306 -uroot  --default-character-set=utf8 cmdb -Ne'select concat(slave_ip,":",port) from cmdb_mysql_info where msater_inst in ();')
# RO實例復制狀態(tài)巡檢
function slv_check() {
local ip_port=($1)
local wechat_url=($2)
for i in ${ip_port[@]}
do
	send_flag="init"
	ProcCnt=0
	ip=$(echo $i|awk -F":" '{print $1}')
	port=$(echo $i|awk -F":" '{print $2}')
	io_thread=$(mysql -uroot -h$ip -P$port -e"show slave status\G" |grep Slave_IO_Running: |awk '{print $2}')
	sql_thread=$(mysql -uroot -h$ip -P$port -e"show slave status\G" |grep Slave_SQL_Running: |awk '{print $2}')
	slv_delay=$(mysql -uroot -h$ip -P$port -e"show slave status\G" |grep Seconds_Behind_Master: |awk '{print $2}')
	ProcCnt=$(mysql -uroot -h$ip -P$port -Ne"select count(*) from information_schema.processlist;")
    TotalProc=$(mysql -uroot -h$ip -P$port -Ne"show variables like 'max_connections';" |awk '{print $2}')
    ProcPct=$(printf "%d" $((ProcCnt*100/TotalProc)))
    echo $TotalProc $ProcCnt $ProcPct
	if [ ! -n "$io_thread" ] && [ ! -n "$sql_thread" ];then
		msg="實例"$ip":"$port":主從配置為空,請及時查看!"
	else
		if [ x"$io_thread" == x'Yes' ] && [ x"$sql_thread" == x'Yes' ];then
			if [ $slv_delay -gt 10 ];then
				msg="實例"$ip":"$port":延遲"$slv_delay"秒"
				echo $curtime" "$msg >>$logfile
			else
				send_flag="replication_ok"
				msg="實例"$ip":"$port":replication_ok"
				echo $curtime" "$msg >>$logfile
			fi
		else
			msg="實例"$ip":"$port",io_thread或者sql_thread斷開,請及時查看"
			echo $curtime" "$msg >>$logfile
		fi
	fi
	if [ $ProcPct -gt 75 ]  && [ $ProcPct -le 90 ];then
		msg="實例"$ip":"$port"連接數(shù)百分比達到"$ProcPct"%,請注意!"
		echo $curtime" "$msg >>$logfile
	elif [ $ProcPct -gt 90 ];then
		msg="實例"$ip":"$port"連接數(shù)百分比達到"$ProcPct"%,請立即查看!"
		echo $curtime" "$msg >>$logfile
	else
		msg="實例"$ip":"$port"連接數(shù)百分比達到"$ProcPct"%,正常"
		echo $curtime" "$msg >>$logfile
	fi
done
}
function MasterLoadMon() {
local ip_port=($1)
for i in ${ip_port[@]}
do
	ip=$(echo $i|awk -F":" '{print $1}')
	port=$(echo $i|awk -F":" '{print $2}')
	ProcCnt=$(mysql -uroot -h$ip -P$port -Ne"select count(*) from information_schema.processlist;")
	TotalProc=$(mysql -uroot -h$ip -P$port -Ne"show variables like 'max_connections';" |awk '{print $2}')
	ProcPct=$(printf "%d" $((ProcCnt*100/TotalProc)))
	 if [ $ProcPct -gt 75 ]  && [ $ProcPct -le 90 ];then
		msg="實例"$ip":"$port"連接數(shù)百分比達到"$ProcPct"%,請注意!"
		echo $curtime" "$msg >>$logfile
	elif [ $ProcPct -gt 90 ];then
		msg="實例"$ip":"$port"連接數(shù)百分比達到"$ProcPct"%,請立即查看!"
		echo $curtime" "$msg >>$logfile
	else
		msg="實例"$ip":"$port"連接數(shù)百分比達到"$ProcPct"%,正常"
		echo $curtime" "$msg >>$logfile
	fi
done
}
## 微信公眾號發(fā)送告警
function wechat_send(){
local w_url=$1
local w_msg=$2
echo "starting send msg to "$w_url
curl "$1" \
	-H 'Content-Type: application/json' \
	-d '
	{
			"message": {
				"content": "'$w_msg'"
			}
	}'
}
# 主函數(shù)
function main(){
slv_check "${slave_list[@]}" "$prod_url"
MasterLoadMon "${MainDB_list[@]}" "$prod_url"
}
## Start Running...
main

關(guān)于如何解決Shell監(jiān)控Mysql主從中斷延遲以及連接數(shù)就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI