alertmanager/manager/alert.go
Julius Volz 35b3741756 Add runbook and alertmanager URLs to PD+email notifications.
I don't have a way to test all the other notification mechanisms, which
is something we should fix in general. For now, only PagerDuty and email
have the new runbook and alertmanager URL information.

Not very happy with the overall cleanliness of this, and the codebase
overall, of course, but since we need this urgently tomorrow, I hope
this is fine for now.
2015-06-25 18:18:08 +02:00

95 lines
2.2 KiB
Go

// Copyright 2013 Prometheus Team
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package manager
import (
"fmt"
"hash/fnv"
"sort"
)
const AlertNameLabel = "alertname"
type AlertFingerprint uint64
type AlertLabelSet map[string]string
type AlertLabelSets []AlertLabelSet
type AlertPayload map[string]string
type Alerts []*Alert
// Alert models an action triggered by Prometheus.
type Alert struct {
// Short summary of alert.
Summary string `json:"summary"`
// Long description of alert.
Description string `json:"description"`
// Runbook link or reference for the alert.
Runbook string `json:"runbook"`
// Label value pairs for purpose of aggregation, matching, and disposition
// dispatching. This must minimally include an "alertname" label.
Labels AlertLabelSet `json:"labels"`
// Extra key/value information which is not used for aggregation.
Payload AlertPayload `json:"payload"`
}
func (a *Alert) Name() string {
return a.Labels[AlertNameLabel]
}
func (a *Alert) Fingerprint() AlertFingerprint {
return a.Labels.Fingerprint()
}
func (l AlertLabelSet) Fingerprint() AlertFingerprint {
keys := []string{}
for k := range l {
keys = append(keys, k)
}
sort.Strings(keys)
summer := fnv.New64a()
separator := string([]byte{0})
for _, k := range keys {
fmt.Fprintf(summer, "%s%s%s%s", k, separator, l[k], separator)
}
return AlertFingerprint(summer.Sum64())
}
func (l AlertLabelSet) Equal(o AlertLabelSet) bool {
if len(l) != len(o) {
return false
}
for k, v := range l {
if o[k] != v {
return false
}
}
return true
}
func (l AlertLabelSet) MatchOnLabels(o AlertLabelSet, labels []string) bool {
for _, k := range labels {
if l[k] != o[k] {
return false
}
}
return true
}