mirror of
https://github.com/VerosK/nagios-snmp-tortilla.git
synced 2024-11-22 10:23:51 +01:00
18 lines
342 B
INI
18 lines
342 B
INI
|
# APC PDU with SNMP - http://goo.gl/KkiEg2
|
||
|
#
|
||
|
# temperature, humidity
|
||
|
#
|
||
|
[value:temperature]
|
||
|
oid = .1.3.6.1.4.1.318.1.1.26.10.2.2.1.8.1
|
||
|
units = C
|
||
|
func = lambda x: float(x)/10
|
||
|
warning = temperature > 21
|
||
|
critical = temperature > 25
|
||
|
name = Teplota
|
||
|
|
||
|
[value:humidity]
|
||
|
oid = .1.3.6.1.4.1.318.1.1.26.10.2.2.1.10.1
|
||
|
units = %
|
||
|
warning = (humidity > 60)
|
||
|
|