2023-12-12 12:44:34 +01:00
|
|
|
import logging
|
|
|
|
|
|
|
|
DEBUG = False # False: logging to stdout with given LOGLEVEL - True: logging all to localhost:19996 and warnings or higher to stdout
|
|
|
|
LOGLEVEL = logging.INFO
|
|
|
|
|
|
|
|
APP_NAME = "z_monitor"
|
|
|
|
|
2024-03-24 13:19:07 +01:00
|
|
|
MQTT_SERVER = "{{ server_nagios_hostname }}"
|
2023-12-12 12:44:34 +01:00
|
|
|
MQTT_PORT = 1883
|
2024-03-24 13:19:07 +01:00
|
|
|
MQTT_USER = "{{ server_nagios_username }}"
|
|
|
|
MQTT_PASSWORD = "{{ server_nagios_password }}"
|
2023-12-12 12:44:34 +01:00
|
|
|
|
|
|
|
SOCK_PROT_PORT = 8380
|