mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-12-07 13:07:09 +08:00
25 lines
615 B
YAML
25 lines
615 B
YAML
global:
|
|
resolve_timeout: 5m
|
|
smtp_from: 'openimalert@163.com'
|
|
smtp_smarthost: 'smtp.163.com:465'
|
|
smtp_auth_username: 'openimalert@163.com'
|
|
smtp_auth_password: 'YOURAUTHPASSWORD'
|
|
smtp_require_tls: false
|
|
smtp_hello: 'xxx监控告警'
|
|
|
|
templates:
|
|
- '/etc/alertmanager/email.tmpl'
|
|
|
|
route:
|
|
group_by: ['alertname']
|
|
group_wait: 5s
|
|
group_interval: 5s
|
|
repeat_interval: 5m
|
|
receiver: 'email'
|
|
receivers:
|
|
- name: 'email'
|
|
email_configs:
|
|
- to: '239374037@qq.com'
|
|
html: '{{ template "email.to.html" . }}'
|
|
headers: { Subject: "[OPENIM-SERVER]告警" }
|
|
send_resolved: true |