91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

如何解決Shell監控Mysql主從中斷延遲以及連接數

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

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

#!/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
## 兩種方式獲取需要檢測從庫主從關系,推薦第二種方式(將DB信息存入元數據表,方便管理)
# 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. 從元數據信息種獲取實例列表
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實例復制狀態巡檢
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"連接數百分比達到"$ProcPct"%,請注意!"
		echo $curtime" "$msg >>$logfile
	elif [ $ProcPct -gt 90 ];then
		msg="實例"$ip":"$port"連接數百分比達到"$ProcPct"%,請立即查看!"
		echo $curtime" "$msg >>$logfile
	else
		msg="實例"$ip":"$port"連接數百分比達到"$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"連接數百分比達到"$ProcPct"%,請注意!"
		echo $curtime" "$msg >>$logfile
	elif [ $ProcPct -gt 90 ];then
		msg="實例"$ip":"$port"連接數百分比達到"$ProcPct"%,請立即查看!"
		echo $curtime" "$msg >>$logfile
	else
		msg="實例"$ip":"$port"連接數百分比達到"$ProcPct"%,正常"
		echo $curtime" "$msg >>$logfile
	fi
done
}
## 微信公眾號發送告警
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'"
			}
	}'
}
# 主函數
function main(){
slv_check "${slave_list[@]}" "$prod_url"
MasterLoadMon "${MainDB_list[@]}" "$prod_url"
}
## Start Running...
main

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

向AI問一下細節

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

AI

和林格尔县| 黔江区| 新和县| 鄱阳县| 靖西县| 遵义市| 龙海市| 岗巴县| 昌乐县| 饶平县| 卓资县| 罗田县| 基隆市| 庆元县| 连平县| 博乐市| 任丘市| 庐江县| 鹤壁市| 甘泉县| 绵竹市| 千阳县| 禄丰县| 海口市| 渝中区| 尼玛县| 白朗县| 邵阳市| 浙江省| 闽侯县| 霍林郭勒市| 安吉县| 同江市| 穆棱市| 子长县| 永顺县| 金华市| 葵青区| 綦江县| 晋州市| 麻江县|