監控innodb status指標

jx_yu發表於2016-09-28
輸入被監控機器的ip 實時獲取innodb相關status指標,包含:
---------|--- MySQL Command Status --|----- Innodb row operation ----|-- Buffer Pool Read --
---QPS---|select insert update delete|  read inserted updated deleted|   logical    physical


#需要編譯指令碼 寫入賬號密碼  
#可以給自己維護的所有DB建立一個監控專用賬號 密碼統一 這樣寫死在指令碼中 直接用即可
]$ cat innodb_status.sh 
#!/bin/bash


#引數變數
host=$1
port=$2
username=使用者
passwd=密碼


#echo "sh $0 $host $username $passwd $port"


#fountion 指令碼說明、幫助
help_info(){  
    echo "NAME"  
    echo "      $0"  
    echo "SYNOPSIS"  
    echo "      $0 is a shell script and monitor innodb status,eg:qps,tps......"  
    echo "DESCRIPTION"  
    echo "      option like mysql client -h host -u username -p password -P port"  
    echo "Usage:"
    echo "      sh $0 ipaddr username password port"
    echo "      E.g sh $0 10.111.7.31 3306 yujx yujxpw"
    echo
}  


#function 列印innodb相關指標
server_id(){
        mysql -h $host -P$port -u$username -p$passwd  -e "show variables like 'server_id'"|grep -iv value
}


innodb_status(){
mysqladmin -h $host -P$port -u$username -p$passwd  -r -i 1 ext |\
awk -F"|" \
"BEGIN{ count=0; }"\
'{ if($2 ~ /Variable_name/ && ((++count)%20 == 1)){\
    print "----------|---------|--- MySQL Command Status --|----- Innodb row operation ----|-- Buffer Pool Read --";\
    print "---Time---|---QPS---|select insert update delete|  read inserted updated deleted|   logical    physical";\
}\
else if ($2 ~ /Queries/){queries=$3;}\
else if ($2 ~ /Com_select /){com_select=$3;}\
else if ($2 ~ /Com_insert /){com_insert=$3;}\
else if ($2 ~ /Com_update /){com_update=$3;}\
else if ($2 ~ /Com_delete /){com_delete=$3;}\
else if ($2 ~ /Innodb_rows_read/){innodb_rows_read=$3;}\
else if ($2 ~ /Innodb_rows_deleted/){innodb_rows_deleted=$3;}\
else if ($2 ~ /Innodb_rows_inserted/){innodb_rows_inserted=$3;}\
else if ($2 ~ /Innodb_rows_updated/){innodb_rows_updated=$3;}\
else if ($2 ~ /Innodb_buffer_pool_read_requests/){innodb_lor=$3;}\
else if ($2 ~ /Innodb_buffer_pool_reads/){innodb_phr=$3;}\
else if ($2 ~ /Uptime / && count >= 2){\
  printf(" %s |%9d",strftime("%H:%M:%S"),queries);\
  printf("|%6d %6d %6d %6d",com_select,com_insert,com_update,com_delete);\
  printf("|%6d %8d %7d %7d",innodb_rows_read,innodb_rows_inserted,innodb_rows_updated,innodb_rows_deleted);\
  printf("|%10d %11d\n",innodb_lor,innodb_phr);\
}}'
}


# 預設埠3306
if [ ! $port ]; then  
       port=3306
fi  


#echo $#,$1


# 執行指令碼
if [ $# -le 0 ]||[ "$1"x = "-h"x ]||[ "$1"x = "--help"x ]
then  
    help_info  
else
    echo "................"
    server_id
    echo "..................."
    innodb_status
fi  


#執行
]$ ./innodb_status.sh ip地址
................
Warning: Using a password on the command line interface can be insecure.
server_id       111111
...................
Warning: Using a password on the command line interface can be insecure.
----------|---------|--- MySQL Command Status --|----- Innodb row operation ----|-- Buffer Pool Read --
---Time---|---QPS---|select insert update delete|  read inserted updated deleted|   logical    physical
 09:37:24 |    10526|   318     66   5021      0| 18124       66   10061       0|    537009          87
 09:37:25 |    10596|   298     96   5048      0| 21170       96   10118       0|    535858          79
 09:37:26 |    10300|   238     65   4947      0| 21968       65    9914       0|    525109          91


參考:


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/27000195/viewspace-2125668/,如需轉載,請註明出處,否則將追究法律責任。

相關文章