-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathtemplate_data.go
265 lines (228 loc) · 7.48 KB
/
template_data.go
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
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
package templates
import (
"context"
"encoding/json"
"net/url"
"path"
"sort"
"strings"
"time"
"github.com/go-kit/log"
"github.com/go-kit/log/level"
"github.com/prometheus/alertmanager/asset"
"github.com/prometheus/alertmanager/notify"
"github.com/prometheus/alertmanager/template"
"github.com/prometheus/alertmanager/types"
"github.com/prometheus/common/model"
"github.com/grafana/alerting/models"
)
type Template = template.Template
type KV = template.KV
type Data = template.Data
var newTemplate = template.New
type TemplateDefinition struct {
// Name of the template. Used to identify the template in the UI and when testing.
Name string
// Template string that contains the template text.
Template string
}
type ExtendedAlert struct {
Status string `json:"status"`
Labels KV `json:"labels"`
Annotations KV `json:"annotations"`
StartsAt time.Time `json:"startsAt"`
EndsAt time.Time `json:"endsAt"`
GeneratorURL string `json:"generatorURL"`
Fingerprint string `json:"fingerprint"`
SilenceURL string `json:"silenceURL"`
DashboardURL string `json:"dashboardURL"`
PanelURL string `json:"panelURL"`
Values map[string]float64 `json:"values"`
ValueString string `json:"valueString"` // TODO: Remove in Grafana 10
ImageURL string `json:"imageURL,omitempty"`
EmbeddedImage string `json:"embeddedImage,omitempty"`
}
type ExtendedAlerts []ExtendedAlert
type ExtendedData struct {
Receiver string `json:"receiver"`
Status string `json:"status"`
Alerts ExtendedAlerts `json:"alerts"`
GroupLabels KV `json:"groupLabels"`
CommonLabels KV `json:"commonLabels"`
CommonAnnotations KV `json:"commonAnnotations"`
ExternalURL string `json:"externalURL"`
}
// FromContent calls Parse on all provided template content and returns the resulting Template. Content equivalent to templates.FromGlobs.
func FromContent(tmpls []string, options ...template.Option) (*Template, error) {
t, err := newTemplate(options...)
if err != nil {
return nil, err
}
// Parse prometheus default templates. Copied from template.FromGlobs.
defaultPrometheusTemplates := []string{"default.tmpl", "email.tmpl"}
for _, file := range defaultPrometheusTemplates {
f, err := asset.Assets.Open(path.Join("/templates", file))
if err != nil {
return nil, err
}
if err := t.Parse(f); err != nil {
f.Close()
return nil, err
}
f.Close()
}
// Parse default template string.
err = t.Parse(strings.NewReader(DefaultTemplateString))
if err != nil {
return nil, err
}
// Parse all provided templates.
for _, tc := range tmpls {
err := t.Parse(strings.NewReader(tc))
if err != nil {
return nil, err
}
}
return t, nil
}
func removePrivateItems(kv template.KV) template.KV {
for key := range kv {
if strings.HasPrefix(key, "__") && strings.HasSuffix(key, "__") {
kv = kv.Remove([]string{key})
}
}
return kv
}
func extendAlert(alert template.Alert, externalURL string, logger log.Logger) *ExtendedAlert {
// remove "private" annotations & labels so they don't show up in the template
extended := &ExtendedAlert{
Status: alert.Status,
Labels: removePrivateItems(alert.Labels),
Annotations: removePrivateItems(alert.Annotations),
StartsAt: alert.StartsAt,
EndsAt: alert.EndsAt,
GeneratorURL: alert.GeneratorURL,
Fingerprint: alert.Fingerprint,
}
// fill in some grafana-specific urls
if len(externalURL) == 0 {
return extended
}
u, err := url.Parse(externalURL)
if err != nil {
level.Debug(logger).Log("msg", "failed to parse external URL while extending template data", "url", externalURL, "error", err.Error())
return extended
}
externalPath := u.Path
generatorURL, err := url.Parse(extended.GeneratorURL)
if err != nil {
level.Debug(logger).Log("msg", "failed to parse generator URL while extending template data", "url", extended.GeneratorURL, "error", err.Error())
return extended
}
orgID := alert.Annotations[models.OrgIDAnnotation]
if len(orgID) > 0 {
extended.GeneratorURL = setOrgIDQueryParam(generatorURL, orgID)
}
dashboardUID := alert.Annotations[models.DashboardUIDAnnotation]
if len(dashboardUID) > 0 {
u.Path = path.Join(externalPath, "/d/", dashboardUID)
extended.DashboardURL = u.String()
panelID := alert.Annotations[models.PanelIDAnnotation]
if len(panelID) > 0 {
u.RawQuery = "viewPanel=" + panelID
extended.PanelURL = u.String()
}
dashboardURL, err := url.Parse(extended.DashboardURL)
if err != nil {
level.Debug(logger).Log("msg", "failed to parse dashboard URL while extending template data", "url", extended.DashboardURL, "error", err.Error())
return extended
}
if len(orgID) > 0 {
extended.DashboardURL = setOrgIDQueryParam(dashboardURL, orgID)
extended.PanelURL = setOrgIDQueryParam(u, orgID)
}
}
if alert.Annotations != nil {
if s, ok := alert.Annotations[models.ValuesAnnotation]; ok {
if err := json.Unmarshal([]byte(s), &extended.Values); err != nil {
level.Warn(logger).Log("msg", "failed to unmarshal values annotation", "error", err.Error())
}
}
// TODO: Remove in Grafana 10
extended.ValueString = alert.Annotations[models.ValueStringAnnotation]
}
matchers := make([]string, 0)
for key, value := range alert.Labels {
if !(strings.HasPrefix(key, "__") && strings.HasSuffix(key, "__")) {
matchers = append(matchers, key+"="+value)
}
}
sort.Strings(matchers)
u.Path = path.Join(externalPath, "/alerting/silence/new")
query := make(url.Values)
query.Add("alertmanager", "grafana")
for _, matcher := range matchers {
query.Add("matcher", matcher)
}
u.RawQuery = query.Encode()
if len(orgID) > 0 {
extended.SilenceURL = setOrgIDQueryParam(u, orgID)
} else {
extended.SilenceURL = u.String()
}
return extended
}
func setOrgIDQueryParam(url *url.URL, orgID string) string {
q := url.Query()
q.Set("orgId", orgID)
url.RawQuery = q.Encode()
return url.String()
}
func ExtendData(data *Data, logger log.Logger) *ExtendedData {
alerts := make([]ExtendedAlert, 0, len(data.Alerts))
for _, alert := range data.Alerts {
extendedAlert := extendAlert(alert, data.ExternalURL, logger)
alerts = append(alerts, *extendedAlert)
}
extended := &ExtendedData{
Receiver: data.Receiver,
Status: data.Status,
Alerts: alerts,
GroupLabels: data.GroupLabels,
CommonLabels: removePrivateItems(data.CommonLabels),
CommonAnnotations: removePrivateItems(data.CommonAnnotations),
ExternalURL: data.ExternalURL,
}
return extended
}
func TmplText(ctx context.Context, tmpl *Template, alerts []*types.Alert, l log.Logger, tmplErr *error) (func(string) string, *ExtendedData) {
promTmplData := notify.GetTemplateData(ctx, tmpl, alerts, l)
data := ExtendData(promTmplData, l)
return func(name string) (s string) {
if *tmplErr != nil {
return
}
s, *tmplErr = tmpl.ExecuteTextString(name, data)
return s
}, data
}
// Firing returns the subset of alerts that are firing.
func (as ExtendedAlerts) Firing() []ExtendedAlert {
res := []ExtendedAlert{}
for _, a := range as {
if a.Status == string(model.AlertFiring) {
res = append(res, a)
}
}
return res
}
// Resolved returns the subset of alerts that are resolved.
func (as ExtendedAlerts) Resolved() []ExtendedAlert {
res := []ExtendedAlert{}
for _, a := range as {
if a.Status == string(model.AlertResolved) {
res = append(res, a)
}
}
return res
}