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.j2 376B

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 = "{{ server_nagios_hostname }}"
  6. MQTT_PORT = 1883
  7. MQTT_USER = "{{ server_nagios_username }}"
  8. MQTT_PASSWORD = "{{ server_nagios_password }}"
  9. SOCK_PROT_PORT = 8380