真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

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

客戶端

成都創(chuàng)新互聯(lián)從2013年創(chuàng)立,先為沽源等服務(wù)建站,沽源等地企業(yè),進(jìn)行企業(yè)商務(wù)咨詢服務(wù)。為沽源企業(yè)網(wǎng)站制作PC+手機(jī)+微官網(wǎng)三網(wǎng)同步一站式服務(wù)解決您的所有建站問題。

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

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

#!/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、檢測(cè)剛才的腳本是否正常運(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

解釋說明:

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

#####錯(cuò)誤#####

[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ù)、啟動(dòng)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)磁盤腳本


網(wǎng)站標(biāo)題:nagios自定義監(jiān)控系統(tǒng)磁盤腳本
本文鏈接:http://weahome.cn/article/johpdg.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部