Nagios Plugins
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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