Linux 셸 스 크 립 트 CPU 경고 구현
#!/bin/bash
#cpu idle percent
cpu_idle=`top -b -d 1 -n 2 | grep Cpu | awk 'NR>1{print $5}' | cut -f 1 -d "."`
if [ -d "/opt/scripts/log" ]
then
cd /opt/scripts
else
mkdir /opt/scripts/log
fi
count=0
condition=true
while condition
do
if [ $cpu_idle -le 20 ]
then
pids=`top -b -d 1 -n 1 | grep java | awk '{if($9 > 80) print $1}'`
for ((a = 1; a < 10; a++))
do
for pid in $pids
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.log
done
done
for pid in $pids
do
date=`date +%Y%m%d%H%M`
jmap -heap $pid > log/heap_$pid_$date.log
done
count++
cpu_idle=`top -b -d 1 -n 2 | grep Cpu | awk 'NR>1{print $5}' | 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
fi
else
condition=false
count=0
fi
done
이상 에서 말 한 것 이 바로 본문 이 여러분 에 게 공유 한 모든 내용 입 니 다.여러분 들 이 좋아 하 시 기 를 바 랍 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
바이너리 파일cat 또는tail, 터미널 디코딩 시 처리 방법cat으로 바이너리 파일을 보려고 할 때 코드가 엉망이 되어 식은땀이 났다. 웹에서 스크롤된 정보의 처리 방법과alias의 설정을 요약합니다. reset 명령을 사용하여 터미널을 재설정합니다.이렇게 하면 고치지 못하...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.