An Ansible role that installs Prometheus Alertmanager server on Ubuntu-based machines with systemd.
All needed packages will be installed with this role.
Available main variables are listed below, along with default values:
prometheus_alertmanager_version: 0.3.0
prometheus_alertmanager_user: prometheus
prometheus_alertmanager_group: prometheus
prometheus_alertmanager_root_dir: /opt/prometheus/alertmanager
prometheus_alertmanager_templates_files: []
prometheus_alertmanager_resolve_timeout: 5m
prometheus_alertmanager_config_flags:
'config.file': '{{ prometheus_alertmanager_config_dir }}/alertmanager.yml'
'storage.path': '{{ prometheus_alertmanager_db_dir }}'
'web.listen-address': '{{ prometheus_alertmanager_listen_address }}'
All variables you can see here.
This role doesn't have dependencies.
deploy.yml file:
- hosts: alertmanager
roles:
- { role: UnderGreen.prometheus-alertmanager }
You should create another config parts of main file inside {{ playbook_dir }}/files/alertmanager_config_parts
.
I use Ansible assembly and config parts should have alphabethical order. For example 2-route.yml
:
# 2-route.yml
route:
# The labels by which incoming alerts are grouped together. For example,
# multiple alerts coming in for cluster=A and alertname=LatencyHigh would
# be batched into a single group.
group_by: ['alertname', 'cluster', 'service']
...
GPLv2