This repository has been archived on 2020-10-27. You can view files and clone it, but cannot push or open issues or pull requests.
alerta.autonomic.zone/ansible/templates/alertad.conf

56 lines
1.3 KiB
Plaintext
Raw Normal View History

2020-04-09 07:23:23 +00:00
SITE_LOGO_URL = 'https://www.coops.tech/images/coops/autonomic'
2020-04-09 08:05:33 +00:00
DEBUG = False
2020-04-09 07:23:23 +00:00
2020-04-09 07:24:19 +00:00
SECRET = "{{ alerta_secret_key }}"
2020-04-09 07:23:23 +00:00
2020-04-09 07:55:34 +00:00
BASE_URL = "/api"
USE_PROXYFIX = True
2020-04-09 07:03:51 +00:00
AUTH_REQUIRED = True
2020-04-09 07:23:23 +00:00
AUTH_PROVIDER = 'keycloak'
2020-04-09 08:05:37 +00:00
SIGNUP_ENABLED = False
2020-04-09 07:23:23 +00:00
KEYCLOAK_URL = "{{ keycloak_url }}"
KEYCLOAK_REALM = "{{ keycloak_realm }}"
2020-04-09 07:43:44 +00:00
ALLOWED_KEYCLOAK_ROLES = ["{{ keycloak_role }}"]
OAUTH2_CLIENT_ID = "{{ oauth_client_id }}"
OAUTH2_CLIENT_SECRET = "{{ oauth_client_secret }}"
2020-04-09 07:03:51 +00:00
SEVERITY_MAP = {
'fatal': 0,
'critical': 1,
'major': 2,
'minor': 3,
'warning': 4,
'indeterminate': 5,
'cleared': 5,
'normal': 5,
'ok': 5,
'informational': 6,
'debug': 7,
'trace': 8,
'unknown': 9
}
2020-04-09 07:23:23 +00:00
2020-04-09 07:03:51 +00:00
DEFAULT_NORMAL_SEVERITY = 'normal' # 'normal', 'ok', 'cleared'
DEFAULT_PREVIOUS_SEVERITY = 'indeterminate'
PLUGINS = ['reject', 'blackout', 'geoip', 'normalise']
GEOIP_URL = 'http://ip-api.com/json'
2020-04-09 07:23:23 +00:00
2020-04-09 07:30:44 +00:00
DATABASE_URL = "postgres://{{ db_user }}:{{ db_passwd }}@{{ db_loc }}/{{ db_name }}"
2020-04-09 07:23:23 +00:00
DATABASE_NAME = "{{ db_name }}"
EMAIL_VERIFICATION = False
# Note(decentral1se): enable once we have mail addresses
# https://docs.alerta.io/en/latest/configuration.html#email-settings
# MAIL_FROM = 'TODO'
# SMTP_HOST = 'TODO'
# SMTP_PASSWORD = 'TODO'
# SMTP_PORT = 'TODO'
# SMTP_STARTTLS = 'TODO'
# SMTP_USERNAME = 'TODO'