The Alertmanager Configurer Charmed Operator provides an HTTP-based API for managing Alertmanager configuration.
This charm has been designed to supplement the
alertmanager-k8s charm. It leverages the alertmanager_remote_configuration interface, provided
by the alertmanager-k8s, to send the configuration over to the Alertmanager inside the
Juju relation data bag.
Full description of the API is available in github.
NOTE: This charm is only compatible with Juju 3.x!
The Alertmanager Configurer Charmed Operator may be deployed using the Juju command line as in:
juju deploy alertmanager-configurer-k8s --trustjuju deploy alertmanager-k8s --channel=edge --trust
juju relate alertmanager-configurer-k8s:alertmanager alertmanager-k8s:remote-configurationAlertmanager Configurer exposes an HTTP API which allows managing Alertmanager's configuration.
The API is available at port 9101 on the IP address of the charm unit. This unit and its IP address
may be determined using the juju status command.
Full description of Alertmanager Configurer's API is available in
github.
Alertmanager Configurer has been designed to support multiple tenants. In a multitenant Alertmanager Configurer setup, each alert is first routed on the tenancy label, and then the routing tree is distinct for each tenant.
Get tenants:
curl -X GET http://<ALERTMANAGER CONFIGURER CHARM UNIT IP>:9101/v1/tenantsCreate Alertmanager's global config:
global:
resolve_timeout: 5m
http_config:
tls_config:
insecure_skip_verify: truecurl -X POST http://<ALERTMANAGER CONFIGURER CHARM UNIT IP>:9101/v1/global
-H 'Content-Type: application/json'
-d '{"resolve_timeout": "5m", "http_config": {"tls_config": {"insecure_skip_verify": true}}}'Get Alertmanager's global config:
curl -X GET http://<ALERTMANAGER CONFIGURER CHARM UNIT IP>:9101/v1/globalCreate receiver:
receivers:
- name: <TENANT_ID>_example
webhook_configs:
- send_resolved: false
url: http://receiver_example.comcurl -X POST http://<ALERTMANAGER CONFIGURER CHARM UNIT IP>:9101/v1/<TENANT_ID>/receiver
-H 'Content-Type: application/json'
-d '{"name": "example", "webhook_configs": [{"url": "http://receiver_example.com"}]}'Delete receiver:
curl -X DELETE http://<ALERTMANAGER CONFIGURER CHARM UNIT IP>:9101/v1/<TENANT_ID>/receiver/<RECEIVER_NAME>