Nagios记录系统监控日志
#!/bin/bash while : do vmr=`vmstat | tail -1 | awk ‘{print $1}‘` if [ ${vmr} -gt 4 ] then date >> /root/monitor.txt vmstat >> /root/monitor.txt netstat -anp >> /root/monitor.txt ps -aux>> /root/monitor.txt last >> /root/monitor.txt tail -10 /var/log/messages >> /root/monitor.txt fi sleep 60 done
此脚本可放至后台运行 sh /root/monitor.sh & ,如遇CPU繁忙的情况,它会自动记载系统日志等以供分析。
本文出自 “八英里” 博客,请务必保留此出处http://5921271.blog.51cto.com/5911271/1408408
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。