项目作者: NETWAYS

项目描述 :
Check Kentix alarm manager
高级语言: Python
项目地址: git://github.com/NETWAYS/check_kentix_alarmmanager.git
创建时间: 2017-05-31T13:39:03Z
项目社区:https://github.com/NETWAYS/check_kentix_alarmmanager

开源协议:GNU General Public License v2.0

下载


check_kentix_alarmmanager

Checks the status of Kentix devices.

Requirements

  • Python libraries: pysnmp, nagaconda (shipped)

Usage

  1. check_kentix -h HOST [-p PORT] [-t TIMEOUT] [-w WARNING] [-c CRITICAL]

Example:

  1. ./check_kentix -h <host> \
  2. -w check_kentix::sensor_0::temp=~:25 \
  3. -c check_kentix::sensor_0::temp=~:30 \
  4. -c check_kentix::sensor_0::active=1:
  5. This check would be CRITICAL if one of the following conditions are met:
  6. -The check request fails (wrong IP address, device unavailable, etc.).
  7. -The first sensor's temperature value is above 30.
  8. -The first sensor is not active.
  9. The check would return a WARNING if the temperature value is above 25 unless
  10. one of the CRITICAL conditions were encountered - in which case
  11. the CRITICAL condition takes precedence.