您的位置:首页 > 数据库 > SQL

zabbix监控mysql脚本(shell)

2019-01-03 13:30 260 查看
[code]#MYSQL_SOCK="/alidata1/mysql3360/mysql.sock"
MYSQL_PATH='mysqladmin'
MYSQL_USER='zabbix'
MYSQL_PWD='E86v5.FraZ-P8q89_f@@'
MYSQL_HOST='10.162.196.229'
MYSQL_PORT='3306'
ARGS=1
if [ $# -ne "$ARGS" ];then
echo "Please input one arguement:"
fi
case $1 in
Uptime)
result=`$MYSQL_PATH -u$MYSQL_USER -h$MYSQL_HOST -p${MYSQL_PWD}  -P $MYSQL_PORT status|cut -f2 -d":"|cut -f1 -d"T"`
echo $result
;;
Com_update)
result=`$MYSQL_PATH -u$MYSQL_USER -h$MYSQL_HOST -p${MYSQL_PWD}   -P $MYSQL_PORT extended-status |grep -w "Com_update"|cut -d"|" -f3`
echo $result
;;
Slow_queries)
result=`$MYSQL_PATH -u$MYSQL_USER -h$MYSQL_HOST -p${MYSQL_PWD}   -P $MYSQL_PORT status |cut -f5 -d":"|cut -f1 -d"O"`
echo $result
;;
Com_select)
result=`$MYSQL_PATH -u$MYSQL_USER -h$MYSQL_HOST -p${MYSQL_PWD}   -P $MYSQL_PORT extended-status |grep -w "Com_select"|cut -d"|" -f3`
echo $result
;;
Com_rollback)
result=`$MYSQL_PATH -u$MYSQL_USER -h$MYSQL_HOST -p${MYSQL_PWD}   -P $MYSQL_PORT extended-status |grep -w "Com_rollback"|cut -d"|" -f3`
echo $result
;;
Questions)
result=`$MYSQL_PATH -u$MYSQL_USER -h$MYSQL_HOST -p${MYSQL_PWD}   -P $MYSQL_PORT status|cut -f4 -d":"|cut -f1 -d"S"`
echo $result
;;
Com_insert)
result=`$MYSQL_PATH -u$MYSQL_USER -h$MYSQL_HOST -p${MYSQL_PWD}  -P $MYSQL_PORT extended-status |grep -w "Com_insert"|cut -d"|" -f3`
echo $result
;;
Com_delete)
result=`$MYSQL_PATH -u$MYSQL_USER -h$MYSQL_HOST -p${MYSQL_PWD}   -P $MYSQL_PORT extended-status |grep -w "Com_delete"|cut -d"|" -f3`
echo $result
;;
Com_commit)
result=`$MYSQL_PATH -u$MYSQL_USER -h$MYSQL_HOST -p${MYSQL_PWD}   -P $MYSQL_PORT extended-status |grep -w "Com_commit"|cut -d"|" -f3`
echo $result
;;
Bytes_sent)
result=`$MYSQL_PATH -u$MYSQL_USER -h$MYSQL_HOST -p${MYSQL_PWD}   -P $MYSQL_PORT extended-status |grep -w "Bytes_sent" |cut -d"|" -f3`
echo $result
;;
Bytes_received)
result=`$MYSQL_PATH -u$MYSQL_USER -h$MYSQL_HOST -p${MYSQL_PWD}   -P $MYSQL_PORT extended-status |grep -w "Bytes_received" |cut -d"|" -f3`
echo $result
;;
Com_begin)
result=`$MYSQL_PATH -u$MYSQL_USER -h$MYSQL_HOST -p${MYSQL_PWD}  -P $MYSQL_PORT extended-status |grep -w "Com_begin"|cut -d"|" -f3`
echo $result
;;

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

 

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: