File size: 5,999 Bytes
1e92f2d |
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 |
package prometheus
import (
"bytes"
"encoding/json"
"fmt"
"io"
"net/http"
"strings"
"time"
"github.com/pkg/errors"
"github.com/target/goalert/alert"
"github.com/target/goalert/integrationkey"
"github.com/target/goalert/permission"
"github.com/target/goalert/retry"
"github.com/target/goalert/util/errutil"
"github.com/target/goalert/util/log"
"github.com/target/goalert/validation/validate"
)
/* Example payload
```
{
"receiver": "goalert",
"status": "firing",
"alerts": [
{
"status": "firing",
"labels": {
"alertname": "InstanceDown",
"code": "200",
"instance": "127.0.0.1:9090",
"job": "prometheus",
"monitor": "codelab-monitor",
"severity": "critical"
},
"annotations": {
"details": "127.0.0.1:9090 of job prometheus has been down for more than 1 minute.",
"summary": "Instance 127.0.0.1:9090 down"
},
"startsAt": "2020-08-08T14:32:08.326990857Z",
"endsAt": "0001-01-01T00:00:00Z",
"generatorURL": "http://pop-os:9090/graph?g0.expr=promhttp_metric_handler_requests_total+%3E+20\u0026g0.tab=1",
"fingerprint": "791cec13fcba0368"
},
{
"status": "firing",
"labels": {
"alertname": "InstanceDown",
"code": "200",
"instance": "localhost:9090",
"job": "prometheus",
"monitor": "codelab-monitor",
"severity": "critical"
},
"annotations": {
"details": "localhost:9090 of job prometheus has been down for more than 1 minute.",
"summary": "Instance localhost:9090 down"
},
"startsAt": "2020-08-08T02:21:08.326990857Z",
"endsAt": "0001-01-01T00:00:00Z",
"generatorURL": "http://pop-os:9090/graph?g0.expr=promhttp_metric_handler_requests_total+%3E+20\u0026g0.tab=1",
"fingerprint": "8df98227bdd81384"
}
],
"groupLabels": {},
"commonLabels": {
"alertname": "InstanceDown",
"code": "200",
"job": "prometheus",
"monitor": "codelab-monitor",
"severity": "critical"
},
"commonAnnotations": {},
"externalURL": "http://pop-os:9093",
"version": "4",
"groupKey": "{}:{}",
"truncatedAlerts": 0
}
```
*/
type postBody struct {
Status string
ExternalURL string
Alerts []postBodyAlert
CommonLabels struct {
Instance string
AlertName string `json:"alertname"`
}
CommonAnnotations struct {
Summary string
Details string
}
}
type postBodyAlert struct {
Labels struct {
AlertName string
Instance string
}
Annotations struct {
Summary string
Details string
}
GeneratorURL string
}
func (a postBodyAlert) Summary() string {
if a.Annotations.Summary != "" {
return a.Annotations.Summary
}
return a.Labels.AlertName + " " + a.Labels.Instance
}
func (a postBodyAlert) gen() string {
if a.GeneratorURL == "" {
return ""
}
return fmt.Sprintf(" [View](%s)", a.GeneratorURL)
}
func (a postBodyAlert) Details() string {
if a.Annotations.Details != "" {
return a.Annotations.Details + a.gen()
}
return a.Summary() + a.gen()
}
func (b postBody) Summary() string {
if b.CommonAnnotations.Summary != "" {
return b.CommonAnnotations.Summary
}
if b.CommonLabels.AlertName == "" {
// different alerts
return b.Alerts[0].Summary() + fmt.Sprintf(" and %d others", len(b.Alerts)-1)
}
// we have a common alert name
if b.CommonLabels.Instance != "" {
return b.CommonLabels.AlertName + " " + b.CommonLabels.Instance
}
var instances []string
for _, a := range b.Alerts {
instances = append(instances, a.Labels.Instance)
}
return b.CommonLabels.AlertName + " " + strings.Join(instances, ",")
}
func (b postBody) Details(payload string) string {
var s strings.Builder
if b.ExternalURL != "" {
fmt.Fprintf(&s, "[Prometheus Alertmanager UI](%s)\n\n", b.ExternalURL)
}
if b.CommonAnnotations.Details != "" {
s.WriteString(b.CommonAnnotations.Details + "\n\n")
} else {
for _, a := range b.Alerts {
s.WriteString(a.Details() + "\n\n")
}
}
if payload != "" {
fmt.Fprintf(&s, "## Payload\n\n```json\n%s\n```\n", payload)
}
return s.String()
}
func clientError(w http.ResponseWriter, code int, err error) bool {
if err == nil {
return false
}
http.Error(w, http.StatusText(code), code)
return true
}
func PrometheusAlertmanagerEventsAPI(aDB *alert.Store, intDB *integrationkey.Store) http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
ctx := r.Context()
err := permission.LimitCheckAny(ctx, permission.Service)
if errutil.HTTPError(ctx, w, err) {
return
}
serviceID := permission.ServiceID(ctx)
var body postBody
var buf bytes.Buffer
err = json.NewDecoder(io.TeeReader(r.Body, &buf)).Decode(&body)
if clientError(w, http.StatusBadRequest, err) {
log.Logf(ctx, "bad request from prometheus alertmanager: %v", err)
return
}
var status alert.Status
switch body.Status {
case "firing":
status = alert.StatusTriggered
case "resolved":
status = alert.StatusClosed
default:
log.Logf(ctx, "bad request from prometheus alertmanager: missing or invalid state")
http.Error(w, "invalid state", http.StatusBadRequest)
return
}
data := make([]byte, buf.Len())
copy(data, buf.Bytes())
buf.Reset()
err = json.Indent(&buf, data, "", " ")
if err == nil {
data = buf.Bytes()
}
summary := validate.SanitizeText(body.Summary(), alert.MaxSummaryLength)
msg := &alert.Alert{
Summary: summary,
Details: validate.SanitizeText(body.Details(string(data)), alert.MaxDetailsLength),
Status: status,
Source: alert.SourcePrometheusAlertmanager,
ServiceID: serviceID,
Dedup: alert.NewUserDedup(summary),
}
err = retry.DoTemporaryError(func(int) error {
_, _, err = aDB.CreateOrUpdate(ctx, msg)
return err
},
retry.Log(ctx),
retry.Limit(10),
retry.FibBackoff(time.Second),
)
if errutil.HTTPError(ctx, w, errors.Wrap(err, "create or update alert for prometheus alertmanager")) {
return
}
}
}
|