Skip to content
Snippets Groups Projects
Commit 02941bf1 authored by jurgenhaas's avatar jurgenhaas
Browse files

Replace deprecated keyword

parent 35a7c582
No related branches found
No related tags found
No related merge requests found
......@@ -4,7 +4,7 @@
- name: "Install required packages"
apt:
pkg: '{{ item }}'
state: 'installed'
state: 'present'
update_cache: yes
with_items:
- 'zlib1g-dev'
......
......@@ -87,6 +87,26 @@ curl=""
# To disable a notification, use the recipient called: disabled
# This works for all notification methods (including the default recipients).
#------------------------------------------------------------------------------
# alerta global notification options
# enable/disable sending alerta notifications
SEND_ALERTA="{{ netdata_alerta_enabled|default('NO') }}"
# here set your alerta server API url
# this is the API url you defined when installed Alerta server,
# it is the same for all users. Do not include last slash.
ALERTA_WEBHOOK_URL="{{ netdata_alerta_webhook|default('') }}"
# Login with an administrative user to you Alerta server and create an API KEY
# with write permissions.
ALERTA_API_KEY="{{ netdata_alerta_apikey|default('') }}"
# you can define environments in /etc/alertad.conf option ALLOWED_ENVIRONMENTS
# standard environments are Production and Development
# if a role's recipients are not configured, a notification will be send to
# this Environment (empty = do not send a notification for unconfigured roles):
DEFAULT_RECIPIENT_ALERTA="{{ netdata_alerta_environment|default('Production') }}"
#------------------------------------------------------------------------------
# email global notification options
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment