溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

nagios自定義監(jiān)控系統(tǒng)磁盤腳本

發(fā)布時間:2020-07-17 07:10:34 來源:網(wǎng)絡(luò) 閱讀:514 作者:warm51cto 欄目:移動開發(fā)

客戶端

1、創(chuàng)建腳本check_disk.sh

[root@y2 ~]# vim /usr/lib64/nagios/plugins/check_disk.sh        #一般都放在這個路徑下

#!/bin/bash

row=`df -h|wc -l`

for i in `seq 2 $row`

do

   ava=`df -h|sed -n "$i"p|awk '{print $4}'`         #獲取磁盤可用值

   u_per=`df -h|sed -n "$i"p|sed -n "s/\%//"p|awk '{print $5}'`     #獲取使用百分比值

   p_p=`df -h|sed -n "$i"p|awk '{print $6}'`      #獲取掛載分區(qū)

   if [ "$u_per" -gt "97" ]

   then

       echo -n "$p_p CRITICAL $u_per% $ava "

       sta[$i]=2

   elif [ "$u_per" -gt "95" ]

   then

       echo -n "$p_p WARNING! $u_per% $ava "

       sta[$i]=1

   else

       echo -n "$p_p OK $u_per% $ava "

       sta[$i]=0

   fi

done

 

n=0

for j in `seq 2 $row`

do

   if [ "${sta[$j]}" -gt $n ]

   then

        n=${sta[$j]}

   fi

done

exit $n

######輸出結(jié)果######

[root@y2 ~]# sh /usr/lib64/nagios/plugins/check_disk.sh

/ OK 26% 13G /dev/shm OK 0% 242M /boot OK 8% 426M

[root@y2 ~]# echo $?

0

2、保存后,修改該腳本的權(quán)限

[root@y2 ~]# chmod +x /usr/lib64/nagios/plugins/check_disk.sh

3、編輯/etc/nagios/nrpe.cfg,加入自定義的腳本

[root@y2 ~]# vim /etc/nagios/nrpe.cfg

command[check_disk]=/usr/lib64/nagios/plugins/check_disk.sh

4、重啟nrpe服務(wù)

[root@y2 ~]# /etc/init.d/nrpe restart

服務(wù)端

5、檢測剛才的腳本是否正常運(yùn)行

[root@wy ~]# /usr/lib64/nagios/plugins/check_nrpe -H 192.168.219.128 -c check_disk    

/ OK 26% 13G /dev/shm OK 0% 242M /boot OK 8% 426M

解釋說明:

如果正常的話,會輸出一行磁盤檢測的數(shù)據(jù),否則可能會報(bào)錯。

#####錯誤#####

[root@localhost ~]# /usr/lib64/nagios/plugins/check_nrpe -H 192.168.153.129 -c check_disk

NRPE: Unable to read output

#############          

注:原因是客戶端的腳本沒有修改權(quán)限

6、添加相應(yīng)的service

[root@wy ~]#  cd /etc/nagios/conf.d

[root@wy conf.d]# vim 192.168.219.128.cfg

define service{

        use                     generic-service

        host_name               192.168.219.128

        service_description     check_disk

        check_command           check_nrpe!check_disk

        max_check_attempts      5

        normal_check_interval   1

}

注:也要檢查一下/etc/nagios/object/commands.cfg里有沒有check_nrpe

7、重啟nagios服務(wù)、啟動http服務(wù)

[root@wy conf.d]# /etc/init.d/nagios restart

[root@wy conf.d]# /etc/init.d/httpd start

8、訪問瀏覽器查看

nagios自定義監(jiān)控系統(tǒng)磁盤腳本


向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI