Linux shell指令碼實現CPU預警

2022-09-26 16:42:15 字數 1313 閱讀 5797

如果cpu佔用率持續達到80以上則呼叫列印j**a執行緒佔用率堆疊的指令碼,見程式設計客棧h,具體用法見他的github wiki!

#!/bin/bash

#cpu idle percent

cpu_idle=`top -b -d 1 -n 2 | grep cpu | awk 'nr>1' | cut -f 1 -d "."`

程式設計客棧if [ -d "/opt/scripts/log" ]

then

cd /opt/scripts

else

mkdir /opt/scripts/logfi

count=0

condition=true

while condition

do if [ $cpu_idle -le 20 ]

then

pids=`top -b -d 1 -n 1 | grep j**a | awk ''`

for ((a = 1; a < 10; a++))

dofor pid in $pids

ietvuh doi

#involve jdk existence check later

date=`date +%y%m%d%h%m`

sh showstack.sh -c 30 -p $pid > log/stack_$pid_$date.log

jstat -gcutil $pid > log/gc_$pid_$date.lietvuhog

done

done

for pid in $pids

dodate=`date +%y%m%d%h%m`

jmap -heap $pid &gwww.cppcns.comt; log/heap_$pid_$date.log

done

count++

cpu_idle=`top -b -d 1 -n 2 | grep cpu | awk 'nr>1' | cut -f 1 -d "."`

if [ $count -ge 3]

then

#send emaili

#server ip address

ip=`ifconfig eth0 | grep "inet addr" | cut -f 2 -d ":" | cut -f 1 -d " "`

condition=false

count=0

fielse

condition=false

count=0

fidone

本文標題: linux shell指令碼實現cpu預警

本文位址:

Linux Shell指令碼基礎

shell指令碼在處理自動迴圈或大的任務方面可節省大量時間,且功能強大。任何指令碼都可能有注釋,加注釋需要此行的第乙個字元為 直譯器對此行不予解釋。指令碼不是複雜的程式,它是按行解釋的。指令碼第一行總是以 bin sh開始,這段指令碼通知shell使用系統上的 bourne shell直譯器。指令碼...

linux shell指令碼犯錯

指令碼裡犯了錯 oracle it shell value 1 oracle it shell value 1 bash value command not found oracle it shell value 3 bash value command not found oracle it sh...

Linux shell 指令碼例項

1.寫乙個指令碼,利用迴圈計算10的階乘 2.寫乙個指令碼,執行後,列印一行提示 please input a number 要求使用者輸入數值,然後列印出該數值,然後再次要求使用者輸入數值。直到使用者輸入 end 停止 執行指令碼方法 nuhup sh route.sh 注意前面要用上nohup,...