nagios監控linux主機監控記憶體指令碼

來源:互聯網
上載者:User

標籤:

說明

工作包括兩部分監控端(一二三)和被監控端(四)

一、nrpe.cfg中添加指令碼

nrpe.cfg中添加命令索引

command[check_used_mem]=/usr/local/nagios/libexec/check_used_mem.sh 80 90

說明:實際記憶體使用量量超過80%警告;超過90%嚴重警告

二、添加具體指令碼

參考指令碼check_used_mem.sh

warn=$1critical=$2all=`free | sed -n ‘2p‘ | awk ‘{print $2}‘`used=`free | sed -n ‘3p‘ | awk ‘{print $3}‘`let "c=$used*100/$all"if [[ $c -lt $warn ]]then     echo "used mem/total < $warn%  [used:$used, total:$total:$all]"    exit 0elif [[ $c -lt $critical ]]then    echo "used mem/total ≥$warn%  [used:$used, total:$total:$all]"    exit 1else    echo "used mem/total ≥$critical%  [used:$used, total:$total:$all]"    exit 2fi

解釋:

1. $1、$2分別指輸入的第一、二個參數,比如:

del.sh指令碼內容為

#/bin/bashecho $1
  • sh del.sh  a                        #第一個參數是a
  • chmod a+x  ./del.sh a         #第一個參數是a

2. free用來查看記憶體的使用方式

[[email protected]_202_12 /]# free -m             total       used       free     shared    buffers     cachedMem:          3072       2459        612          0        207       1803-/+ buffers/cache:        447       2624Swap:         1913          0       1913
  • total 記憶體總數: 3072
  • used 已經使用的記憶體數: 2459
  • free 閒置記憶體數: 612
  • shared 當前已經廢棄不用,總是0
  • buffers: Buffer Cache記憶體數: 13220
  • cached: Page Cache記憶體數: 2720160

關係:total = used + free

第3行:
-/+ buffers/cache的意思:
-buffers/cache 的記憶體數: 447 (等於第1行的 used - buffers - cached)
+buffers/cache 的記憶體數: 2624 (等於第1行的 free + buffers + cached)
注:此處的記憶體數在用上面式子計算後,在大小上有一點點出入(還不知道是什麼原因)。

可見-buffers/cache反映的是被程式實實在在吃掉的記憶體,而+buffers/cache反映的是可以挪用的記憶體總數。

3. sed -n ‘2p‘指的是尋找第二行

4. awk ‘{print $2} 指的是第二列,其中預設以空格分隔。可以利用-F指定分隔字元

$echo 1b234b56b7 | awk -F ‘b‘ ‘{print $2}‘234

5. 實用[[]],<用來比較字串;-lt用來比較數字

三、重啟nrpe
/usr/local/nagios/bin/nrpe -c /usr/local/nagios/etc/nrpe.cfg -d
四、在監控端添加監控項
define service {        use                             generic-service        host_name                       100.61.73.2,100,61,73.3        service_description             記憶體        check_command                   check_nrpe!check_used_mem        notifications_enabled           1        }

 

nagios監控linux主機監控記憶體指令碼

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.