forked from kayrus/prometheus-kubernetes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
alertmanager-configmap.yaml
239 lines (216 loc) · 7.85 KB
/
alertmanager-configmap.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
kind: ConfigMap
apiVersion: v1
metadata:
name: alertmanager
data:
config.yml: |-
global:
# ResolveTimeout is the time after which an alert is declared resolved
# if it has not been updated.
resolve_timeout: 5m
# The smarthost and SMTP sender used for mail notifications.
smtp_smarthost: 'smtp.gmail.com:587'
smtp_from: '[email protected]'
smtp_auth_username: '[email protected]'
smtp_auth_password: 'barfoo'
# The API URL to use for Slack notifications.
slack_api_url: 'https://hooks.slack.com/services/abc123'
# # The auth token for Hipchat.
# hipchat_auth_token: '1234556789'
#
# # Alternative host for Hipchat.
# hipchat_url: 'https://hipchat.foobar.org/'
# # The directory from which notification templates are read.
templates:
- '/etc/alertmanager-templates/*.tmpl'
# The root route on which each incoming alert enters.
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']
# When a new group of alerts is created by an incoming alert, wait at
# least 'group_wait' to send the initial notification.
# This way ensures that you get multiple alerts for the same group that start
# firing shortly after another are batched together on the first
# notification.
group_wait: 30s
# When the first notification was sent, wait 'group_interval' to send a batch
# of new alerts that started firing for that group.
group_interval: 5m
# If an alert has successfully been sent, wait 'repeat_interval' to
# resend them.
#repeat_interval: 1m
repeat_interval: 15m
# A default receiver
# If an alert isn't caught by a route, send it to default.
receiver: default
# All the above attributes are inherited by all child routes and can
# overwritten on each.
# The child route trees.
routes:
# Send severity=slack alerts to slack.
- match:
severity: slack
receiver: slack_alert
- match:
severity: email
receiver: slack_alert
# receiver: email_alert
receivers:
- name: 'default'
slack_configs:
- channel: '#devops'
text: '<!channel>{{ template "slack.devops.text" . }}'
send_resolved: true
- name: 'slack_alert'
slack_configs:
- channel: '#devops'
send_resolved: true
# # Whether or not to notify about resolved alerts.
# send_resolved: true
#
# # The Slack webhook URL.
# [ api_url: <string> | default = global.slack_api_url ]
#
# # The channel or user to send notifications to.
# channel: <tmpl_string>
#
# # API request data as defined by the Slack webhook API.
# [ color: <tmpl_string> | default = '{{ if eq .Status "firing" }}danger{{ else }}good{{ end }}' ]
# [ username: <tmpl_string> | default = '{{ template "slack.default.username" . }}'
# [ title: <tmpl_string> | default = '{{ template "slack.default.title" . }}' ]
# [ title_link: <tmpl_string> | default = '{{ template "slack.default.titlelink" . }}' ]
# [ icon_emoji: <tmpl_string> ]
# [ pretext: <tmpl_string> | default = '{{ template "slack.default.pretext" . }}' ]
# [ text: <tmpl_string> | default = '{{ template "slack.default.text" . }}' ]
# [ fallback: <tmpl_string> | default = '{{ template "slack.default.fallback" . }}' ]
- name: 'email_alert'
email_configs:
- to: '[email protected]'
#
#
#
# global:
# # The smarthost and SMTP sender used for mail notifications.
# smtp_smarthost: 'localhost:25'
# smtp_from: '[email protected]'
# smtp_auth_username: 'alertmanager'
# smtp_auth_password: 'password'
# # The auth token for Hipchat.
# hipchat_auth_token: '1234556789'
# # Alternative host for Hipchat.
# hipchat_url: 'https://hipchat.foobar.org/'
#
# # The directory from which notification templates are read.
# templates:
# - '/etc/alertmanager/template/*.tmpl'
#
# # The root route on which each incoming alert enters.
# 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']
#
# # When a new group of alerts is created by an incoming alert, wait at
# # least 'group_wait' to send the initial notification.
# # This way ensures that you get multiple alerts for the same group that start
# # firing shortly after another are batched together on the first
# # notification.
# group_wait: 30s
#
# # When the first notification was sent, wait 'group_interval' to send a batch
# # of new alerts that started firing for that group.
# group_interval: 5m
#
# # If an alert has successfully been sent, wait 'repeat_interval' to
# # resend them.
# repeat_interval: 3h
#
# # A default receiver
# receiver: team-X-mails
#
# # All the above attributes are inherited by all child routes and can
# # overwritten on each.
#
# # The child route trees.
# routes:
# # This routes performs a regular expression match on alert labels to
# # catch alerts that are related to a list of services.
# - match_re:
# service: ^(foo1|foo2|baz)$
# receiver: team-X-mails
# # The service has a sub-route for critical alerts, any alerts
# # that do not match, i.e. severity != critical, fall-back to the
# # parent node and are sent to 'team-X-mails'
# routes:
# - match:
# severity: critical
# receiver: team-X-pager
# - match:
# service: files
# receiver: team-Y-mails
#
# routes:
# - match:
# severity: critical
# receiver: team-Y-pager
#
# # This route handles all alerts coming from a database service. If there's
# # no team to handle it, it defaults to the DB team.
# - match:
# service: database
# receiver: team-DB-pager
# # Also group alerts by affected database.
# group_by: [alertname, cluster, database]
# routes:
# - match:
# owner: team-X
# receiver: team-X-pager
# - match:
# owner: team-Y
# receiver: team-Y-pager
#
#
# # Inhibition rules allow to mute a set of alerts given that another alert is
# # firing.
# # We use this to mute any warning-level notifications if the same alert is
# # already critical.
# inhibit_rules:
# - source_match:
# severity: 'critical'
# target_match:
# severity: 'warning'
# # Apply inhibition if the alertname is the same.
# equal: ['alertname', 'cluster', 'service']
#
#
# receivers:
# - name: 'team-X-mails'
# email_configs:
# - to: '[email protected]'
#
# - name: 'team-X-pager'
# email_configs:
# - to: '[email protected]'
# pagerduty_configs:
# - service_key: <team-X-key>
#
# - name: 'team-Y-mails'
# email_configs:
# - to: '[email protected]'
#
# - name: 'team-Y-pager'
# pagerduty_configs:
# - service_key: <team-Y-key>
#
# - name: 'team-DB-pager'
# pagerduty_configs:
# - service_key: <team-DB-key>
# - name: 'team-X-hipchat'
# hipchat_configs:
# - auth_token: <auth_token>
# room_id: 85
# message_format: html
# notify: true