Linux shell脚本实现CPU预警
如果CPU占用率持续达到80以上则调用打印java线程占用率堆栈的脚本,见https://github.com/oldratlee/useful-shells/blob/master/show-busy-java-threads.sh,具体用法见他的github wiki!
#!/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
以上所述就是本文给大家分享的全部内容了,希望大家能够喜欢。
上一篇:在 Shell 提示符中显示 Git 分支名称的方法
栏 目:其它服务器
本文标题:Linux shell脚本实现CPU预警
本文地址:https://zz.feitang.co/server/34906.html
您可能感兴趣的文章
- 01-07Tomcat部署Bolo动态博客
- 01-07图文详解nginx日志切割的实现
- 01-07如何解决swarm docker 端口不通问题
- 01-07详解nginx location指令
- 01-07如何解决docker http 500错误问题
- 01-07windows server 2008安装配置DNS服务器
- 01-07Linux上搭载Nginx负载均衡配置使用案例详解
- 01-07NGINX 权限控制文件预览和下载的实现原理
- 01-07Nginx防盗链与服务优化配置的全过程
- 01-07使用 Apache 反向代理的设置技巧


阅读排行
推荐教程
- 12-23linux中ftp无法访问怎么办
- 12-11docker存储目录迁移示例教程
- 12-10docker start启动容器后仍然exit状态的解决
- 12-10Linux下如何安装Logstash
- 01-05Shell脚本去重的几种方法实例
- 12-22kvm虚拟机配置NAT端口转发的实现方法
- 12-19Zabbix SAML SSO 登录绕过漏洞的操作流程
- 12-15Docker-Compose搭建Spark集群的实现方法
- 12-14Docker Desktop无法正常启动解决(failed to start...)
- 12-14k8s 与docker空间使用分析与清理方法




