zabbix監控mysql指令碼(shell)
阿新 • • 發佈:2019-01-03
#MYSQL_SOCK="/alidata1/mysql3360/mysql.sock" MYSQL_PATH='mysqladmin' MYSQL_USER='zabbix' MYSQL_PWD='[email protected]@' 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