forked from benjojo/alertmanager-discord
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
197 lines (166 loc) · 5.25 KB
/
main.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
package main
import (
"bytes"
"encoding/json"
"flag"
"fmt"
"io/ioutil"
"log"
"net/http"
"net/url"
"os"
"regexp"
"strings"
)
// Discord color values
const (
ColorRed = 10038562
ColorGreen = 3066993
ColorGrey = 9807270
)
type alertManAlert struct {
Annotations struct {
Description string `json:"description"`
Summary string `json:"summary"`
Message string `json:"message"`
} `json:"annotations"`
EndsAt string `json:"endsAt"`
GeneratorURL string `json:"generatorURL"`
Labels map[string]string `json:"labels"`
StartsAt string `json:"startsAt"`
Status string `json:"status"`
}
type alertManOut struct {
Alerts []alertManAlert `json:"alerts"`
CommonAnnotations struct {
Summary string `json:"summary"`
} `json:"commonAnnotations"`
CommonLabels struct {
Alertname string `json:"alertname"`
Cluster string `json:"k8s_cluster_name"`
Severity string `json:"severity"`
} `json:"commonLabels"`
ExternalURL string `json:"externalURL"`
GroupKey string `json:"groupKey"`
GroupLabels struct {
Alertname string `json:"alertname"`
} `json:"groupLabels"`
Receiver string `json:"receiver"`
Status string `json:"status"`
Version string `json:"version"`
}
type discordOut struct {
Content string `json:"content"`
Embeds []discordEmbed `json:"embeds"`
}
type discordEmbed struct {
Title string `json:"title"`
Description string `json:"description"`
Color int `json:"color"`
Fields []discordEmbedField `json:"fields"`
}
type discordEmbedField struct {
Name string `json:"name"`
Value string `json:"value"`
}
const defaultListenAddress = "127.0.0.1:9094"
func main() {
envWhURL := os.Getenv("DISCORD_WEBHOOK")
whURL := flag.String("webhook.url", envWhURL, "Discord WebHook URL.")
envListenAddress := os.Getenv("LISTEN_ADDRESS")
listenAddress := flag.String("listen.address", envListenAddress, "Address:Port to listen on.")
flag.Parse()
if *whURL == "" {
log.Fatalf("Environment variable 'DISCORD_WEBHOOK' or CLI parameter 'webhook.url' not found.")
}
if *listenAddress == "" {
*listenAddress = defaultListenAddress
}
_, err := url.Parse(*whURL)
if err != nil {
log.Fatalf("The Discord WebHook URL doesn't seem to be a valid URL.")
}
re := regexp.MustCompile(`https://discord(?:app)?.com/api/webhooks/[0-9]{18}/[a-zA-Z0-9_-]+`)
if ok := re.Match([]byte(*whURL)); !ok {
log.Printf("The Discord WebHook URL doesn't seem to be valid.")
}
log.Printf("Listening on: %s", *listenAddress)
http.ListenAndServe(*listenAddress, http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
b, err := ioutil.ReadAll(r.Body)
log.Printf("Have got an alert.")
if err != nil {
panic(err)
}
amo := alertManOut{}
err = json.Unmarshal(b, &amo)
if err != nil {
panic(err)
}
groupedAlerts := make(map[string][]alertManAlert)
for _, alert := range amo.Alerts {
groupedAlerts[alert.Status] = append(groupedAlerts[alert.Status], alert)
}
for status, alerts := range groupedAlerts {
DO := discordOut{}
icon := ""
summaryDescription := ""
severityLevel := ""
color := 0
switch amo.CommonLabels.Severity {
case "none":
severityLevel = ":speaking_head:"
case "info":
severityLevel = ":information_source:"
case "warning":
severityLevel = ":eyes:"
case "critical":
severityLevel = ":skull:"
default:
severityLevel = ":grey_question:"
}
if status == "firing" {
color = ColorRed
icon = ":fire:"
} else if status == "resolved" {
color = ColorGreen
icon = ":woman_firefighter:"
}
if amo.CommonAnnotations.Summary != "" {
summaryDescription = amo.CommonAnnotations.Summary
} else {
summaryDescription = fmt.Sprintf("Severity: %s %s Cluster: %s Description: %s",amo.CommonLabels.Severity, severityLevel, amo.CommonLabels.Cluster, amo.CommonLabels.Alertname)
}
RichEmbed := discordEmbed{
Title: fmt.Sprintf("%s[%s:%d] %s %s",icon, strings.ToUpper(status), len(alerts), amo.CommonLabels.Alertname, icon),
Description: summaryDescription,
Color: color,
Fields: []discordEmbedField{},
}
//DO.Content = summaryDescription
for _, alert := range alerts {
alertDescription := ""
if alert.Annotations.Description != "" {
alertDescription = alert.Annotations.Description
} else {
alertDescription = alert.Annotations.Message
}
realname := alert.Labels["instance"]
if strings.Contains(realname, "localhost") && alert.Labels["exported_instance"] != "" {
realname = alert.Labels["exported_instance"]
}
RichEmbed.Fields = append(RichEmbed.Fields, discordEmbedField{
Name: fmt.Sprintf("[%s]: %s on %s", strings.ToUpper(status), alert.Labels["alertname"], realname),
Value: alertDescription,
})
}
DO.Embeds = []discordEmbed{RichEmbed}
DOD, _ := json.Marshal(DO)
log.Printf("Have sent an alert to Discord")
resp, err := http.Post(*whURL, "application/json", bytes.NewReader(DOD))
if err != nil {
log.Fatal(err)
}
log.Printf("HTTP Response Status:", resp.StatusCode, http.StatusText(resp.StatusCode))
}
}))
}