c1155a2879
This can be used to forward Prometheus Alertmanager notifications to Microsoft Teams. Change-Id: I563f2438b3cb0895606b029b5269ce2e50c413e3 Depends-On: https://review.opendev.org/c/openstack/kolla/+/812678
25 lines
773 B
Django/Jinja
25 lines
773 B
Django/Jinja
{
|
|
"command": "/opt/prometheus-msteams -http-addr localhost:{{ prometheus_msteams_port }} -config-file /etc/msteams/msteams.yml -template-file /etc/msteams/msteams.tmpl",
|
|
"config_files": [
|
|
{
|
|
"source": "{{ container_config_directory }}/msteams.yml",
|
|
"dest": "/etc/msteams/msteams.yml",
|
|
"owner": "prometheus",
|
|
"perm": "0600"
|
|
},
|
|
{
|
|
"source": "{{ container_config_directory }}/msteams.tmpl",
|
|
"dest": "/etc/msteams/msteams.tmpl",
|
|
"owner": "prometheus",
|
|
"perm": "0600"
|
|
}
|
|
],
|
|
"permissions": [
|
|
{
|
|
"path": "/var/log/kolla/prometheus",
|
|
"owner": "prometheus:kolla",
|
|
"recurse": true
|
|
}
|
|
]
|
|
}
|