Configuration
The following settings are configured on the Alerta server. For alerta
CLI configuration options see the command-line reference and for
Web UI configuration options see the web UI reference.
The configuration file uses standard python syntax for setting variables.
The default settings (defined in settings.py
) should not be modified
directly.
To change any of these settings create a configuration file that overrides
these default settings. The default location for the server configuration
file is /etc/alertad.conf
however the location itself can be overridden
by using a environment variable ALERTA_SVR_CONF_FILE
.
For example, to set the blackout period default duration to 1 day (ie. 86400 seconds):
$ export ALERTA_SVR_CONF_FILE=~/.alertad.conf
$ echo "BLACKOUT_DURATION = 86400" >$ALERTA_SVR_CONF_FILE
Config File Settings
General Settings
Example
DEBUG = True
SECRET_KEY = 'changeme'
BASE_URL = '/api'
USE_PROXYFIX = False
DEBUG
debug mode for increased logging (default is
False
)SECRET_KEY
a unique, randomly generated sequence of ASCII characters.
BASE_URL
if API served on a path or behind a proxy use it to fix relative links (no default)
USE_PROXYFIX
if API served behind SSL terminating proxy (default is
False
)
Logging Settings
Example
LOG_HANDLERS = ['file']
LOG_FILE = '/var/log/alertad.log'
LOG_MAX_BYTES = 5*1024*1024 # 5 MB
LOG_BACKUP_COUNT = 2
LOG_FORMAT = 'verbose'
or
LOG_HANDLERS = ['console']
LOG_FORMAT = '%(asctime)s - %(name)s - %(levelname)s - %(message)s'
LOG_CONFIG_FILE
full path to logging configuration file in dictConfig format (default logging config)
LOG_HANDLERS
list of log handlers eg.
console
,file
,wsgi
(default isconsole
)LOG_FILE
full path to write rotating server log file if
LOG_HANDLERS
set tofile
(default isalertad.log
)LOG_LEVEL
only log messages with log severity level or higher (default is
WARNING
)LOG_MAX_BYTES
maximum size of log file before rollover (default is 10 MB)
LOG_BACKUP_COUNT
number of rollover files before older files are deleted (default is 2)
LOG_FORMAT
log file formatter name (ie.
default
,simple
,verbose
,json
,syslog
) or any valid Python log format stringLOG_FACILITY
syslog logging facility if
LOG_FORMAT
is set tosyslog
(default islocal7
)LOG_METHODS
only log listed HTTP methods eg. ‘GET’, ‘POST’, ‘PUT’, ‘DELETE’ (default is all HTTP methods)
API Settings
Example
ALARM_MODEL='ALERTA'
DEFAULT_PAGE_SIZE = 200
HISTORY_LIMIT = 10
HISTORY_ON_VALUE_CHANGE = False # do not log if only value changes
ALARM_MODEL
set to
ISA_18_2
to use experimental ANSI/ISA 18.2 alarm model (default isALERTA
)DEFAULT_PAGE_SIZE
maximum number of alerts returned in a single query (default is
50
items)HISTORY_LIMIT
number of history entries for each alert before old entries are deleted (default is
100
entries)HISTORY_ON_VALUE_CHANGE
create history entry for duplicate alerts if value changes (default is
True
)
Search Settings
Example
DEFAULT_FIELD = 'text'
DEFAULT_FIELD
search default field when no field given when using query string syntax (default is
text
)
Database Settings
There is a choice of either Postgres or MongoDB as the backend database.
Note
Development first began using MongoDB and then Postgres support was added later. At present, new features are tested against Postgres first and then ported to MongoDB. Both backends have extensive tests to ensure they are functionally equivalent however there a still minor differences in how each implements some search features.
The database is defined using the standard database connection URL formats. Many database configuration options are supported as connection URL parameters.
Postgres Example
DATABASE_URL = 'postgresql://other@localhost/otherdb?connect_timeout=10&application_name=myapp'
DATABASE_NAME = 'monitoring'
See Postgres connection strings for more information.
MongoDB Example
DATABASE_URL = 'mongodb://db1.example.net,db2.example.net:2500/?replicaSet=test&connectTimeoutMS=300000'
DATABASE_NAME = 'monitoring'
DATABASE_RAISE_ON_ERROR = False # creating tables & indexes manually
See MongoDB connection strings for more information.
DATABASE_URL
database connection string (default is
mongodb://localhost:27017/monitoring
)DATABASE_NAME
database name can be used to override database in connection string (no default)
DATABASE_RAISE_ON_ERROR
terminate startup if database configuration fails (default is
True
)
Bulk API Settings
The bulk API requires a Celery backend and can be used to off-load long-running tasks. (experimental)
Example Redis Task Queue
BULK_QUERY_LIMIT = 10000
CELERY_BROKER_URL='redis://localhost:6379/0'
CELERY_RESULT_BACKEND='redis://localhost:6379/0'
BULK_QUERY_LIMIT
limit the number of tasks in a single bulk query (default is
100000
)CELERY_BROKER_URL
URL of Celery-supported broker (no default)
CELERY_RESULT_BACKEND
URL of Celery-supported result backend (no default)
Authentication Settings
If enabled, authentication provides additional benefits beyond just security, such as auditing, and features like the ability to assign and watch alerts.
Example
AUTH_REQUIRED = True
ADMIN_USERS = ['admin@alerta.io', 'devops@example.com']
DEFAULT_ADMIN_ROLE = 'ops'
ADMIN_ROLES = ['ops', 'devops', 'coolkids']
USER_DEFAULT_SCOPES = ['read', 'write:alerts']
CUSTOMER_VIEWS = True
AUTH_REQUIRED
users must authenticate when using web UI or command-line tool (default
False
)ADMIN_USERS
email addresses or logins that are assigned the “admin” role
DEFAULT_ADMIN_ROLE
default role name used by
ADMIN_ROLES
(default isadmin
)ADMIN_ROLES
list of “roles” or “groups” that are assigned the “admin” role (default is a list containing the
DEFAULT_ADMIN_ROLE
)
DEFAULT_USER_ROLE
USER_ROLES
USER_DEFAULT_SCOPES
default permissions assigned to logged in users (default is
['read', 'write']
)
DEFAULT_GUEST_ROLE
GUEST_ROLES
GUEST_DEFAULT_SCOPES
default permissions assigned to guest users (default is
['read:alerts']
)
CUSTOM_SCOPES
DELETE_SCOPES
CUSTOMER_VIEWS
enable multi-tenacy based on
customer
attribute (default isFalse
)
ALLOW_READONLY
READONLY_SCOPES
Auth Provider Settings
Example
AUTH_PROVIDER = 'basic'
AUTH_PROVIDER
valid authentication providers are
basic
,ldap
,github
,openid
,saml2
,azure
,cognito
,gitlab
,google
,keycloak
, andpingfederate
(default isbasic
)
Note
Any authentication provider that is OpenID Connect compliant is supported. Set the
AUTH_PROVIDER
to openid
and configure the required OIDC
settings
below.
Basic Auth Settings
Example
AUTH_PROVIDER = 'basic'
BASIC_AUTH_REALM = 'Monitoring'
SIGNUP_ENABLED = True
ALLOWED_EMAIL_DOMAINS = ['alerta.io', 'alerta.dev']
BASIC_AUTH_REALM
BasicAuth authentication realm (default is
Alerta
)SIGNUP_ENABLED
prevent self-service sign-up of new users via the web UI (default is
True
)ALLOWED_EMAIL_DOMAINS
authorised email domains when using email as login (default is
*
)
LDAP Auth Settings
Example
AUTH_PROVIDER = 'ldap'
LDAP_URL = 'ldap://openldap:389'
LDAP_DOMAINS = {
'my-domain.com': 'cn=%s,dc=my-domain,dc=com'
}
LDAP_URL
URL of the LDAP server (no default)
LDAP_TIMEOUT = -1 # seconds (-1=infinity) LDAP_BASEDN = ‘’ LDAP_CACERT = ‘’ # Path to CA certificate to verify LDAPS connection against
LDAP_ALLOW_SELF_SIGNED_CERT
(default is
False
)LDAP_DOMAINS
dictionary of LDAP domains and LDAP search filters (no default)
LDAP_BIND_USERNAME = ‘’ # required if using LDAP_SEARCH_QUERY eg. uid=admin,ou=users,dc=domain,dc=com LDAP_BIND_PASSWORD = ‘’ # required if using LDAP_BIND_USERNAME LDAP_USER_BASEDN = ‘’ # BASEDN for user search (default: LDAP_BASEDN) LDAP_USER_FILTER = ‘’ # eg. (cn={username}) LDAP_USER_NAME_ATTR = ‘cn’ # eg. cn or displayName LDAP_USER_EMAIL_ATTR = ‘mail’ # eg. mail or email LDAP_GROUP_BASEDN = ‘’ # BASEDN for group search (default: LDAP_BASEDN) LDAP_GROUP_FILTER = ‘’ # eg. (&(member={userdn})(objectClass=group)) LDAP_GROUP_NAME_ATTR = ‘dn’ # eg. dn, memberOf, or cn LDAP_DEFAULT_DOMAIN = ‘’ # if set allows users to login with bare username LDAP_CONFIG = {} # type: Dict[str, Any] ALLOWED_LDAP_GROUPS = [‘*’]
OpenID Connect Auth Settings
Example
FIXME
OAUTH2_CLIENT_ID
client ID used by OpenID and OAuth2 providers (required)
OAUTH2_CLIENT_SECRET
client secret used by OpenID and OAuth2 providers (required)
OIDC_ISSUER_URL
issuer URL also known as Discovery Document is used to auto-discover all necessary auth endpoints for an OIDC client (required)
OIDC_AUTH_URL
FIXME check
OIDC_TOKEN_AUTH_METHODS
list of token auth methods in order of preference (
client_secret_basic
,client_secret_post
,client_secret_jwt
)OIDC_LOGOUT_URL
FIXME (no default)
OIDC_VERIFY_TOKEN
(default is
False
)OIDC_ROLE_CLAIM
JWT claim name whose value is used in role mapping (default is
roles
)OIDC_GROUP_CLAIM
JWT claim name whose value is used in customer mapping (default is
groups
)ALLOWED_OIDC_ROLES
allow list of acceptable roles (default is
*
)ALLOWED_EMAIL_DOMAINS
authorised email domains when using email as login (default is
*
)OIDC_LINK_USER_EMAIL
if using federated IdP link user accounts by verified email addresses (default is
True
)
SAML 2.0 Auth Settings
Example
FIXME
SAML2_ENTITY_ID
(no default)
SAML2_METADATA_URL
(no default)
SAML2_USER_NAME_FORMAT
Python format string which will be rendered to user’s name using SAML attributes. See saml2 (default is
'{givenName} {surname}'
)SAML2_EMAIL_ATTRIBUTE
(default is
'emailAddress'
)SAML2_CONFIG
pysaml2
configurationdict
. See saml2 (no default)ALLOWED_SAML2_GROUPS
list of authorised groups a user must belong to. See saml2 for details (default is
*
)ALLOWED_EMAIL_DOMAINS
authorised email domains when using email as login (default is
*
)
Azure Active Directory Auth Settings
Example
AZURE_TENANT = 'common'
OAUTH2_CLIENT_ID = 'd8de5642-52e5-480e-abab-9db88e9e341f'
OAUTH2_CLIENT_SECRET = 'a7Xx6eV~-4XUjycF.-9Lxw53N46G.L_raO'
ALLOWED_EMAIL_DOMAINS = 'alerta.dev'
ADMIN_USERS = 'admin@alerta.dev'
AZURE_TENANT
“common”, “organizations”, “consumers” or tenant ID (defalt is
common
)
Amazon Cognito Auth Settings
Example
FIXME
AWS_REGION
AWS region (default is
us-east-1
)COGNITO_USER_POOL_ID
(required)
COGNITO_DOMAIN
(required)
GitHub Auth Settings
Example
FIXME
GITHUB_URL
API URL for public or privately run GitHub Enterprise server (default is
https://github.com
)GITHUB_ROLE_CLAIM = ‘teams’ # used in role mapping GITHUB_GROUP_CLAIM = ‘organizations’ # used in customer mapping
ALLOWED_GITHUB_ORGS
authorised GitHub organisations a user must belong to (default is
*
)
GitLab Auth Settings
Example
FIXME
GITLAB_URL
API URL for public or privately run GitLab server (default is
https://gitlab.com
)ALLOWED_GITLAB_GROUPS
authorised GitLab groups a user must belong to (default is
*
)
Google Auth Settings
Example
FIXME
OAUTH2_CLIENT_ID
client ID required by OAuth2 providers (no default)
OAUTH2_CLIENT_SECRET
client secret required by OAuth2 providers (no default)
ALLOWED_EMAIL_DOMAINS
authorised email domains when using email as login (default is
*
)
Keycloack Auth Settings
Example
FIXME
KEYCLOAK_URL
Keycloak website URL when using Keycloak as OAuth2 provider (no default)
KEYCLOAK_REALM
Keycloak realm when using Keycloak as OAuth2 provider (no default)
ALLOWED_KEYCLOAK_ROLES
list of authorised roles a user must belong to (no default)
API Key & Bearer Token Settings
TOKEN_EXPIRE_DAYS
number of days a web UI bearer token is valid (default is
14
days)API_KEY_EXPIRE_DAYS
number of days an API key is valid (default is
365
days)
HMAC Auth Settings
Example
HMAC_AUTH_CREDENTIALS = [
# {
# 'id': '', # access key id => $ uuidgen | tr '[:upper:]' '[:lower:]'
# 'key': '', # secret key => $ date | md5 | base64
# 'algorithm': 'sha256' # valid hmac algorithm eg. sha256, sha384, sha512
# }
] # type: List[Dict[str, Any]]
HMAC_AUTH_CREDENTIALS
FIXME HMAC credentials
Audit Log Settings
Audit events can be logged locally to the standard application log (which could also help with general debugging) or forwarded to a HTTP endpoint using a POST.
Example
AUDIT_TRAIL = ['admin', 'write', 'auth']
AUDIT_LOG = True # log to Flask application logger
AUDIT_LOG_REDACT = True
AUDIT_LOG_JSON = False
AUDIT_URL = 'https://listener.logz.io:8071/?token=TOKEN'
AUDIT_TRAIL
audit trail for
admin
,write
orauth
changes. (default is['admin']
)AUDIT_LOG
enable audit logging to configured application log file (default is
False
)AUDIT_LOG_REDACT
redact sensitive data before logging (default is
True
)AUDIT_LOG_JSON
log alert data as JSON object (default is
False
)AUDIT_URL
forward audit logs to HTTP POST URL (no default)
CORS Settings
Example
CORS_ORIGINS = [
'http://localhost',
'http://localhost:8000',
r'https?://\w*\.?local\.alerta\.io:?\d*/?.*' # => http(s)://*.local.alerta.io:<port>
]
CORS_ORIGINS
URL origins that can access the API for Cross-Origin Resource Sharing (CORS)
Severity Settings
The severities and their order are customisable to fit with the environment in which Alerta is deployed.
Example
SEVERITY_MAP = {
'critical': 1,
'warning': 4,
'indeterminate': 5,
'ok': 5,
'unknown': 9
}
DEFAULT_NORMAL_SEVERITY = 'ok' # 'normal', 'ok', 'cleared'
DEFAULT_PREVIOUS_SEVERITY = 'indeterminate'
COLOR_MAP = {
'severity': {
'critical': 'red',
'warning': '#1E90FF',
'indeterminate': 'lightblue',
'ok': '#00CC00',
'unknown': 'silver'
},
'text': 'black'
}
SEVERITY_MAP
dictionary of severity names and levels
DEFAULT_NORMAL_SEVERITY
severity to be assigned to new alerts (default is
normal
)DEFAULT_INFORM_SEVERITY
severity that are auto-deleted during housekeeping (default is
informational
)DEFAULT_PREVIOUS_SEVERITY
previous severity to be assigned to new alerts (default is
indeterminate
)COLOR_MAP
dictionary of severity colors, text and highlight color
Timeout Settings
Alert timeouts are important for housekeeping and heartbeat timeouts are important for generating alerts from stale heartbeats.
Example
ALERT_TIMEOUT = 43200 # 12 hours
HEARTBEAT_TIMEOUT = 7200 # 2 hours
HEARTBEAT_MAX_LATENCY
ALERT_TIMEOUT
timeout period for alerts (default is
86400
seconds,0
= do not timeout)HEARTBEAT_TIMEOUT
timeout period for heartbeats (default is
86400
seconds)HEARTBEAT_MAX_LATENCY
stale heartbeat threshold in milliseconds (default is
2000
seconds)ACK_TIMEOUT
timeout period for unacknowledging alerts in ack’ed status (default is
7200
seconds,0
= do not auto-unack)SHELVE_TIMEOUT
timeout period for unshelving alerts in shelved status (default is
7200
seconds,0
= do not auto-unshelve)
Housekeeping Settings
Example
DELETE_EXPIRED_AFTER = 12 # hours
DELETE_INFO_AFTER = 0 # do not delete informational alerts
DELETE_EXPIRED_AFTER
time period before deleting expired alerts (default is
7200
seconds ie. 2 hours,0
= do not delete)DELETE_INFO_AFTER
time period before deleting informational alerts (default is
43,200
seconds ie. 12 hours,0
= do not delete)
Note
Ensure to set DEFAULT_INFORM_SEVERITY
to the “informational” severity that should be deleted.
Email Settings
If email verification is enabled then emails are sent to users when they sign up via BasicAuth. They must click on the provided link to verify their email address before they can login.
Example
EMAIL_VERIFICATION = True
SMTP_HOST = 'smtp.example.com'
MAIL_FROM = 'noreply@alerta.io'
EMAIL_VERIFICATION
enforce email verification of new users (default is
False
)SMTP_HOST
SMTP host of mail server (default is
smtp.gmail.com
)SMTP_PORT
SMTP port of mail server (default is
587
)MAIL_LOCALHOST
mail server to use in HELO/EHLO command (default is
localhost
)SMTP_STARTTLS
SMTP connection in TLS (Transport Layer Security) mode. All SMTP commands that follow will be encrypted (default is
False
)SMTP_USE_SSL
used for situations where SSL is required from the beginning of the connection and using
SMTP_STARTTLS
is not appropriate (default isFalse
)SSL_KEY_FILE
a PEM formatted private key file for the SSL connection(no default)
SSL_CERT_FILE
a PEM formatted certificate chain file for the SSL connection (no default)
MAIL_FROM
valid email address from which emails are sent (no default)
SMTP_USERNAME
application-specific username, if different to MAIL_FROM user (no default)
SMTP_PASSWORD
application-specific password for
MAIL_FROM
orSMTP_USERNAME
(no default)
Web UI Settings
The following settings are specific to the web UI and are not used by the server.
Example
SITE_LOGO_URL = 'http://pigment.github.io/fake-logos/logos/vector/color/fast-banana.svg'
DATE_FORMAT_SHORT_TIME = 'HH:mm'
DATE_FORMAT_MEDIUM_DATE = 'EEE d MMM HH:mm'
DATE_FORMAT_LONG_DATE = 'd/M/yyyy h:mm:ss.sss a'
DEFAULT_AUDIO_FILE = '/audio/Bike Horn.mp3'
COLUMNS = ['severity', 'status', 'lastReceiveTime', 'duplicateCount',
'customer', 'environment', 'service', 'resource', 'event', 'value', 'text']
SORT_LIST_BY = 'lastReceiveTime'
ACTIONS = ['createIssue', 'updateIssue']
DEFAULT_FONT = {
'font-family': '"B612", "Fira Code", sans-serif',
'font-size': '22px',
'font-weight': 600 # 400=normal, 700=bold
}
GOOGLE_TRACKING_ID = 'UA-44644195-5'
AUTO_REFRESH_INTERVAL = 30000 # 30s
SITE_LOGO_URL
URL of company logo to replace “alerta” in navigation bar (no default)
DATE_FORMAT_SHORT_TIME
format used for time in columns eg.
09:24
(default isHH:mm
)DATE_FORMAT_MEDIUM_DATE
format used for dates in columns eg.
Tue 9 Oct 09:24
(default isEEE d MMM HH:mm
)DATE_FORMAT_LONG_DATE
format used for date and time in detail views eg.
9/10/2018 9:24:03.036 AM
(default isd/M/yyyy h:mm:ss.sss a
)DEFAULT_AUDIO_FILE
make sound when new alert arrives. must exist on client at relative path eg.
/audio/Bike Horn.mp3
(no default)COLUMNS
user defined columns and column order for alert list view (default is standard web console column order)
SORT_LIST_BY
to sort by newest use
lastReceiveTime
or oldest use-createTime
. minus means reverse (default islastReceiveTime
)DEFAULT_FILTER
default alert list filter as query filter (default is
{'status':['open','ack']}
)DEFAULT_FONT
default
font-family
,font-size
andfont-weight
(default isSintony
,13px
,500
)ACTIONS
adds buttons to web console for operators to trigger custom actions against alert (no default)
GOOGLE_TRACKING_ID
used by the web UI to send tracking data to Google Analytics (no default)
AUTO_REFRESH_INTERVAL
interval at which the web UI refreshes alert list (default is
5000
milliseconds)
Alert Status Indicator Settings
Example
ASI_SEVERITY = [
'critical', 'major', 'minor', 'warning', 'indeterminate', 'informational'
]
ASI_QUERIES = [
{'text': 'Production', 'query': [['environment', 'Production']]},
{'text': 'Development', 'query': [['environment', 'Development']]},
{'text': 'Heartbeats', 'query': {'q': 'event:Heartbeat'}},
{'text': 'Misc.', 'query': 'group=Misc'},
]
ASI_SEVERITY
severity counts to include in status indicator (default is all non-normal)
ASI_QUERIES
list of alert queries applied to filter status indicators (see example for default)
Plugin Settings
Plugins are used to extend the behaviour of the Alerta server without
having to modify the core application. The only plugins that are installed
and enabled by default are the reject
and blackout
plugins. Other
plugins are available in the contrib repo.
Example
PLUGINS = ['reject', 'blackout', 'slack']
PLUGINS_RAISE_ON_ERROR = False # keep processing other plugins if exception
PLUGINS
list of enabled plugins (default
['reject', 'blackout']
)PLUGINS_RAISE_ON_ERROR
stop processing plugins if there is an exception (default is
True
)
Reject Plugin Settings
Alerts can be rejected based on the origin
or environment
alert attributes.
Example
ORIGIN_BLACKLIST = ['foo/bar$', '.*/qux'] # reject all foo alerts from bar, and everything from qux
ALLOWED_ENVIRONMENTS = ['Production', 'Development', 'Testing']
ORIGIN_BLACKLIST
list of alert origins blacklisted from submitting alerts. useful for rouge alert sources (no default)
ALLOWED_ENVIRONMENTS
list of allowed environments. useful for enforcing discrete set of environments (default is
['Production', 'Development']
)
Note
To disable the reject
plugin simply remove it from the
list of enabled plugins in the PLUGINS
configuration setting
to override the default.
Blackout Plugin Settings
Alerts can be suppressed based on alert attributes for arbitrary durations known as “blackout periods”. An alert received during a blackout period is rejected, by default.
Example
BLACKOUT_DURATION = 7200 # 2 hours
NOTIFICATION_BLACKOUT = True
BLACKOUT_ACCEPT = ['normal', 'ok', 'cleared']
BLACKOUT_DURATION
default period for an alert blackout (default is
3600
)NOTIFICATION_BLACKOUT
instead of rejecting alerts received during blackout periods, set
status
of alert toblackout
and do not forward to plugins (default isFalse
)BLACKOUT_ACCEPT
used with
NOTIFICATION_BLACKOUT
if alerts withstatus
ofblackout
should still be closed by “ok” alerts (no default)
Forwarder Plugin Settings
Alerts and actions can be forwarded to other Alerta servers to create a “federated” Alerta environment or forwarded to other systems.
Example
BASE_URL='https://primary.alerta.io' # must match actual server name and port
PLUGINS=['forwarder']
FWD_DESTINATIONS = [
('https://secondary.alerta.io', {'username': 'user', 'password': 'pa55w0rd', 'timeout': 10}, ['alerts', 'actions']), # BasicAuth
# ('https://httpbin.org/anything', dict(username='foo', password='bar', ssl_verify=False), ['*']),
('https://tertiary.alerta.io', {
'key': 'e3b8afc0-db18-4c51-865d-b95322742c5e',
'secret': 'MDhjZGMyYTRkY2YyNjk1MTEyMWFlNmM3Y2UxZDU1ZjIK'
}, ['actions']), # Hawk HMAC
('https://backup.alerta.io', {'key': 'demo-key'}, ['delete']), # API key
('https://failover.alerta.io', {'token': 'bearer-token'}, ['*']), # Bearer token
]
FWD_DESTINATIONS
list of remote hosts, authentication methods (BasicAuth, API key, HMAC or Bearer Token), and actions (see below) to forward (no default)
Note
Valid actions are *
(all), alerts
, actions
, open
, assign
, ack
,
unack
, shelve
, unshelve
, close
, and delete
Tip
To generate HMAC key and secret, it is useful to use UUID for key and base64 encoded string for secret so that they are visibly different:
$ uuidgen | tr '[:upper:]' '[:lower:]' <= create HMAC "key"
58e7c66f-b990-4610-9496-60eb3c63339b
$ date | md5 | base64 <= create HMAC "secret"
MzVlMzQ5NWYzYWE2YTgxYTUyYmIyNDY0ZWE2ZWJlYTMK
Webhook Settings
Example
DEFAULT_ENVIRONMENT = 'Production'
DEFAULT_ENVIRONMENT
default alert environment for webhooks, must be a member of
ALLOWED_ENVIRONMENTS
Environment Variables
Some configuration settings are special because they can be overridden by environment variables. This is to make deployment to different platforms and managed environments such as Heroku, Kubernetes and AWS easier, or to make use of managed Postgres or MongoDB services.
Note
Environment variables are read after configuration files so they will always override any other setting.
General Settings
DEBUG
see above
BASE_URL
see above
USE_PROXYFIX
see above
SECRET_KEY
see above
Database Settings
DATABASE_URL
used by both Postgres and MongoDB for database connection strings
DATABASE_NAME
database name can be used to override default database defined in
DATABASE_URL
MongoDB Settings
Deprecated since version 5.0: Use DATABASE_URL
and DATABASE_NAME
instead.
MONGO_URI
used to override
MONGO_URI
config variable using the standard connection string formatMONGODB_URI
alternative name for
MONGO_URI
environment variable which is used by some managed servicesMONGOHQ_URL
automatically set when using Heroku MongoHQ managed service
MONGOLAB_URI
automatically set when using Heroku MongoLab managed service
MONGO_PORT
automatically set when deploying Alerta to a Docker linked mongo container
Authentication Settings
AUTH_REQUIRED
see above
AUTH_PROVIDER
see above
ADMIN_USERS
see above
SIGNUP_ENABLED
see above
CUSTOMER_VIEWS
see above
OAUTH2_CLIENT_ID
see above
OAUTH2_CLIENT_SECRET
see above
ALLOWED_EMAIL_DOMAINS
see above
AZURE_TENANT
see above
GITHUB_URL
see above
ALLOWED_GITHUB_ORGS
see above
GITLAB_URL
see above
ALLOWED_GITLAB_GROUPS
see above
KEYCLOAK_URL
see above
KEYCLOAK_REALM
see above
ALLOWED_KEYCLOAK_ROLES
see above
LDAP_BIND_PASSWORD
see above
OIDC_ISSUER_URL
see above
ALLOWED_OIDC_ROLES
see above
Sundry Settings
CORS_ORIGINS
see above
MAIL_FROM
see above
SMTP_PASSWORD
see above
GOOGLE_TRACKING_ID
Housekeeping Settings
DELETE_EXPIRED_AFTER
see above
DELETE_INFO_AFTER
see above
Plugin & Webhook Settings
PLUGINS
see above
BLACKOUT_DURATION
see above
NOTIFICATION_BLACKOUT
see above
BLACKOUT_ACCEPT
see above
ORIGIN_BLACKLIST
see above
ALLOWED_ENVIRONMENTS
see above
DEFAULT_ENVIRONMENT
see above
Dynamic Settings
Using the management switchboard on the API some dynamic settings can be switched on and off without restarting the Alerta server daemon.
Currently, there is only one setting that can be toggled in this way and it is the Auto-refresh allow switch.
Auto-Refresh Allow
The Alerta Web UI will automatically referesh the list of alerts in the alert console every 5 seconds.
If for whatever reason, the Alerta API is experiencing heavy load the
auto_refresh_allow
switch can be turned off and the Web UI will respect
that and switch to manual refresh mode. The Alerta web UI will start
auto-refereshing again if the auto_refresh_allow
switch is turned back on.