Nagios Plugins
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

config.py 322B

12345678910111213
  1. import logging
  2. DEBUG = False # False: logging to stdout with given LOGLEVEL - True: logging all to localhost:19996 and warnings or higher to stdout
  3. LOGLEVEL = logging.INFO
  4. APP_NAME = "z_monitor"
  5. MQTT_SERVER = "<hostname>"
  6. MQTT_PORT = 1883
  7. MQTT_USER = "<username>"
  8. MQTT_PASSWORD = "<password>"
  9. SOCK_PROT_PORT = 8380