利用shell監控cpu、磁碟、記憶體使用量率

來源:互聯網
上載者:User

標籤:監控centos磁碟cpu

利用shell監控cpu、磁碟、記憶體使用量率,達到警示閾值發郵件進行通知

並配合任務計劃,即可及時擷取警示資訊

#!/bin/bash###############################################Author: Liuzhengwei - [email protected]#QQ:1135960569#Last modified: 2017-04-19 21:50#Filename: jiankong.sh#Description: ###############################################擷取cpu使用率cpuUsage=`top -n 1 | awk -F ‘[ %]+‘ ‘NR==3 {print $2}‘`#擷取磁碟使用率data_name="/dev/vda1"diskUsage=`df -h | grep $data_name | awk -F ‘[ %]+‘ ‘{print $5}‘`logFile=/tmp/jiankong.log#擷取記憶體情況mem_total=`free -m | awk -F ‘[ :]+‘ ‘NR==2{print $2}‘`mem_used=`free -m | awk -F ‘[ :]+‘ ‘NR==3{print $3}‘`#統計記憶體使用量率mem_used_persent=`awk ‘BEGIN{printf "%.0f\n",(‘$mem_used‘/‘$mem_total‘)*100}‘`#擷取警示時間now_time=`date ‘+%F %T‘`function send_mail(){        mail -s "監控警示" [email protected] < /tmp/jiankong.log}function check(){        if [[ "$cpuUsage" > 80 ]] || [[ "$diskUsage" > 80 ]] || [[ "$mem_used_persent" > 80 ]];then                echo "警示時間:${now_time}" > $logFile                echo "CPU使用率:${cpuUsage}% --> 磁碟使用率:${diskUsage}% --> 記憶體使用量率:${mem_used_persent}%" >> $logFile                send_mail        fi}function main(){        check}main


本文出自 “激情燃燒的歲月” 部落格,請務必保留此出處http://liuzhengwei521.blog.51cto.com/4855442/1917501

利用shell監控cpu、磁碟、記憶體使用量率

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.