老闆給機房新買了個溫度,溼度的感應器,問我能不能整合到Nagios裏面。個人回答是No Problem.python
首先看看他自帶的界面ios
監控SNMP,首先得知道他的OID是啥,這個界面我能夠直接下載MIB文件和對應的EXCEL文檔。bash
下載之後,重命名MIB爲txt文件,而後拷貝到個人nagios服務器的/usr/share/snmp/mibs 目錄下,而後記得添加到配置文件中服務器
[root@sydnagios mibs]# pwd /usr/share/snmp/mibs [root@sydnagios mibs]# ls g*txt geist_mib.txt [root@sydnagios mibs]# more /usr/share/snmp/snmp.conf mibfile /usr/share/snmp/mibs/geist_mib.txt
這樣子,我就能夠直接經過名字或者OID來查詢狀態了。ide
好比說我根據他的OID查詢溼度和溫度
學習
snmpwalk -v2c -c public 10.3.1.142 1.3.6.1.4.1.21239.5.1.2.1.6 GEIST-V4-MIB::internalHumidity.1 = INTEGER: 29 % [root@sydnagios mibs]# snmpwalk -v2c -c public 10.3.1.142 1.3.6.1.4.1.21239.5.1.2.1.5 GEIST-V4-MIB::internalTemp.1 = INTEGER: 291 0.1 Degrees
等等,溼度是正確的,溫度的Interger 是291,他還須要乘以0.1纔是正確的溫度。this
用Nagios自帶的check_snmp試試看,結果也是這樣,這可不是我想要的,在輸到Nagios以前,我必須把數據處理一下pwa
[root@sydnagios mibs]# /usr/local/nagios/libexec/check_snmp -H 10.3.1.142 -o 1.3.6.1.4.1.21239.5.1.2.1.5.1 -C public -P 2c SNMP OK - 292 0.1 Degrees | GEIST-V4-MIB::internalTemp.1=292
寫個簡單的腳本,記得執行chomd +x。注意返回值,0表示正常,1表示warning,2表示critical,3表示未知異常blog
#!/bin/sh snmp=$(/usr/local/nagios/libexec/check_snmp -H 10.3.1.142 -o 1.3.6.1.4.1.21239.5.1.2.1.5.1 -C public -P 2c|cut -b 11-14) temp=$(( $snmp/10)) #echo $temp #echo $temp if test $temp -lt 30;then echo "TEMP OK - $temp Degree " exit 0 elif test $temp -lt 35; then echo "TEMP WARNING - $temp Degree" exit 1 else echo "TEMP CRITICAL - $temp Degree" exit 2 fi
前段時間在學習python,試了試python的腳本也是工做的ip
#!/usr/bin/env python import os result=os.popen("/usr/local/nagios/libexec/check_snmp -H 10.3.1.142 -o 1.3.6.1.4.1.21239.5.1.2.1.5.1 -C public -P 2c|cut -b 11-14").read() result=float(result) value=result/10 if value<30: print("Temperature is OK-%0.1f Degrees"%value) exit(0) elif value<35: print("Temperature is Warning-%0.1f Degrees"%value) exit(1) else: print("Temperature is Critical-%0.1f Degrees"%value) exit(2)
command.cfg添加一條命令
define command{ command_name check_snmp_temp command_line /usr/local/nagios/libexec/test.sh }
network.cfg裏面添加一個host和service的定義
define host{ use generic-ap ; Inherit default values from a template host_name MELSENSOR ; The name we're giving to this switch alias MELSENSOR ; A longer name associated with the switch address 10.3.1.142 ; IP address of the switch parents MEL3750WIFI } define service{ use generic-service ; Inherit values from a template host_name MELSENSOR servicegroups network-services service_description Temp check_command check_snmp_temp #2d_coords 100,100 }
這樣就好了。
用相似的方式處理一下溼度,由於溼度直接獲取的結果就是正確的,因此我就直接用現成的check_snmp了
最後Nagios 的界面