2023-01-19 19:45:33 +01:00
|
|
|
ZABBIX_API = 'http://127.0.0.1:8080' # IP of the frontend of Zabbix used to make API calls
|
|
|
|
ZABBIX_URL = 'https://zabbix.internal' # URL of your Zabbix frontend used to create links about triggers informations
|
|
|
|
ZABBIX_LOGIN = 'Admin' # Login used to call Zabbix API
|
|
|
|
ZABBIX_PASS = 'admin' # Password used to call Zabbix API
|
|
|
|
LIMIT = 3000 # Number of alerts to retrieve for all host groups mentioned below
|
2023-02-08 11:32:19 +01:00
|
|
|
HOSTGROUP = ["Zabbix*"] # Host groups related to your alerts (e.g: "Zabbix servers","Zabbix proxy","Zabbix Frontend"). You can use a wildcard.
|
2023-01-19 19:45:33 +01:00
|
|
|
SEVERITY = 3 # Minimum severity to retrieve
|
|
|
|
TIMEOUT = 20 # API Timeout
|
|
|
|
PORT = 8080 # Listen port for the super-server
|
|
|
|
ZABBIX_SERVERS_CHECK = ['127.0.0.1:10051'] # Zabbix server IP to check. (Makes a socket connection on the IP:port)
|
2023-01-19 19:28:14 +01:00
|
|
|
COLOR_TEAM = {
|
|
|
|
"Zabbix servers": "#04B404"
|
2023-01-19 19:45:33 +01:00
|
|
|
} # Possibility to fix color for host groups
|