一、cpu信息采集
1).采集cpu使用率
采集算法:通過/proc/stat文件采集并計(jì)算CPU總使用率或者單個(gè)核使用率。以cpu0為例,算法如下:
1. cat /proc/stat | grep ‘cpu0'得到cpu0的信息
2. cpuTotal1=user+nice+system+idle+iowait+irq+softirq
3. cpuUsed1=user+nice+system+irq+softirq
4. sleep 30秒
5. 再次cat /proc/stat | grep 'cpu0' 得到cpu的信息
6. cpuTotal2=user+nice+system+idle+iowait+irq+softirq
7. cpuUsed2=user+nice+system+irq+softirq
8. 得到cpu0 在30秒內(nèi)的單核利用率:(cpuUsed2 – cpuUsed1) * 100 / (cpuTotal2 – cpuTotal1)
相當(dāng)于使用top –d 30命令,把user、nice、system、irq、softirq五項(xiàng)的使用率相加。
shell代碼:
復(fù)制代碼 代碼如下:
a=(`cat /proc/stat | grep -E "cpu\b" | awk -v total=0 '{$1="";for(i=2;i=NF;i++){total+=$i};used=$2+$3+$4+$7+$8 }END{print total,used}'`)
sleep 30
b=(`cat /proc/stat | grep -E "cpu\b" | awk -v total=0 '{$1="";for(i=2;i=NF;i++){total+=$i};used=$2+$3+$4+$7+$8 }END{print total,used}'`)
cpu_usage=(((${b[1]}-${a[1]})*100/(${b[0]}-${a[0]})))
2).采集cpu負(fù)載
采集算法:讀取/proc/loadavg得到機(jī)器的1/5/15分鐘平均負(fù)載,再乘以100。
shell代碼:
復(fù)制代碼 代碼如下:
cpuload=(`cat /proc/loadavg | awk '{print $1,$2,$3}'`)
load1=${cpuload[0]}
load5=${cpuload[1]}
load15=${cpuload[2]}
二、內(nèi)存采集
1).應(yīng)用程序使用內(nèi)存
采集算法:讀取/proc/meminfo文件,(MemTotal – MemFree – Buffers – Cached)/1024得到應(yīng)用程序使用內(nèi)存數(shù)。
shell代碼:
復(fù)制代碼 代碼如下:
awk '/MemTotal/{total=$2}/MemFree/{free=$2}/Buffers/{buffers=$2}/^Cached/{cached=$2}END{print (total-free-buffers-cached)/1024}' /proc/meminfo
2).MEM使用量
采集算法:讀取/proc/meminfo文件,MemTotal – MemFree得到MEM使用量。
shell代碼:
復(fù)制代碼 代碼如下:
awk '/MemTotal/{total=$2}/MemFree/{free=$2}END{print (total-free)/1024}' /proc/meminfo
3).SWAP使用大小
采集算法:通過/proc/meminfo文件,SwapTotal – SwapFree得到SWAP使用大小。
shell代碼:
復(fù)制代碼 代碼如下:
awk '/SwapTotal/{total=$2}/SwapFree/{free=$2}END{print (total-free)/1024}' /proc/meminfo
三、磁盤信息采集(disk io)
1、IN:平均每秒把數(shù)據(jù)從硬盤讀到物理內(nèi)存的數(shù)據(jù)量
采集算法:讀取/proc/vmstat文件得出最近240秒內(nèi)pgpgin的增量,把pgpgin的增量再除以240得到每秒的平均增量。
相當(dāng)于vmstat 240命令bi一列的輸出。
shell代碼:
復(fù)制代碼 代碼如下:
a=`awk '/pgpgin/{print $2}' /proc/vmstat`
sleep 240
b=`awk '/pgpgin/{print $2}' /proc/vmstat`
ioin=$(((b-a)/240))
2、OUT:平均每秒把數(shù)據(jù)從物理內(nèi)存寫到硬盤的數(shù)據(jù)量
采集算法:讀取/proc/vmstat文件得出最近240秒內(nèi)pgpgout的增量,把pgpgout的增量再除以240得到每秒的平均增量。
相當(dāng)于vmstat 240命令bo一列的輸出。
shell代碼:
復(fù)制代碼 代碼如下:
a=`awk '/pgpgout/{print $2}' /proc/vmstat`
sleep 240
b=`awk '/pgpgout/{print $2}' /proc/vmstat`
ioout=$(((b-a)/240))
四、網(wǎng)絡(luò)
1).流量
以https://www.jb51.net/為例,eth0是內(nèi)網(wǎng),eth1外網(wǎng),獲取60秒的流量。
機(jī)器網(wǎng)卡的平均每秒流量
采集算法:讀取/proc/net/dev文件,得到60秒內(nèi)發(fā)送和接收的字節(jié)數(shù)(KB),然后乘以8,再除以60,得到每秒的平均流量。
shell代碼:
復(fù)制代碼 代碼如下:
traffic_be=(`awk 'BEGIN{ORS=" "}/eth0/{print $2,$10}/eth1/{print $2,$10}' /proc/net/dev`)
sleep 60
traffic_af=(`awk 'BEGIN{ORS=" "}/eth0/{print $2,$10}/eth1/{print $2,$10}' /proc/net/dev`)
eth0_in=$(( (${traffic_af[0]}-${traffic_be[0]})/60 ))
eth0_out=$(( (${traffic_af[1]}-${traffic_be[1]})/60 ))
eth1_in=$(( (${traffic_af[2]}-${traffic_be[2]})/60 ))
eth1_out=$(( (${traffic_af[3]}-${traffic_be[3]})/60 ))
2).包量
機(jī)器網(wǎng)卡的平均每秒包量
采集算法:讀取/proc/net/dev文件,得到60秒內(nèi)發(fā)送和接收的包量,然后除以60,得到每秒的平均包量。
shell代碼:
復(fù)制代碼 代碼如下:
packet_be=(`awk 'BEGIN{ORS=" "}/eth0/{print $3,$11}/eth1/{print $3,$11}' /proc/net/dev`)
sleep 60
packet_af=(`awk 'BEGIN{ORS=" "}/eth0/{print $3,$11}/eth1/{print $3,$11}' /proc/net/dev`)
eth0_in=$(( (${packet_af[0]}-${packet_be[0]})/60 ))
eth0_out=$(( (${packet_af[1]}- ${packet_be[1]})/60 ))
eth1_in=$(( (${packet_af[2]}- ${packet_be[2]})/60 ))
eth1_out=$(( (${packet_af[3]}- ${packet_be[3]})/60 ))
您可能感興趣的文章:- shell腳本快速創(chuàng)建、格式化、掛載新添加的磁盤實(shí)現(xiàn)方法詳解
- powershell遠(yuǎn)程管理服務(wù)器磁盤空間的實(shí)現(xiàn)代碼
- 一天一個(gè)shell命令 linux好管家--磁盤--df命令詳解
- Powershell中獲取所有磁盤盤符的方法
- 獲取磁盤IO與系統(tǒng)負(fù)載Load的shell腳本
- 監(jiān)視磁盤使用情況的Shell腳本(本地+遠(yuǎn)程)
- shell腳本快速創(chuàng)建格式化磁盤與詳細(xì)操作步驟