alertmanager/types/types.go

167 lines
4.0 KiB
Go
Raw Normal View History

2015-09-25 12:38:22 +00:00
package types
2015-09-25 16:14:46 +00:00
import (
2015-09-27 12:25:56 +00:00
"encoding/json"
2015-09-25 16:14:46 +00:00
"fmt"
"time"
"github.com/prometheus/common/model"
)
type Annotations map[model.LabelName]string
2015-09-25 12:38:22 +00:00
type Alert struct {
// Label value pairs for purpose of aggregation, matching, and disposition
// dispatching. This must minimally include an "alertname" label.
Labels model.LabelSet `json:"labels"`
// Extra key/value information which does not define alert identity.
Annotations Annotations `json:"annotations,omitempty"`
2015-09-25 12:38:22 +00:00
2015-09-27 12:25:56 +00:00
CreatedAt time.Time `json:"createdAt,omitempty"`
ResolvedAt time.Time `json:"resolvedAt,omitempty"`
2015-09-25 12:38:22 +00:00
// The authoritative timestamp.
Timestamp time.Time `json:"timestamp"`
}
// Name returns the name of the alert. It is equivalent to the "alertname" label.
func (a *Alert) Name() string {
return string(a.Labels[model.AlertNameLabel])
}
// func (a *Alert) Merge(o *Alert) bool {
// }
// Fingerprint returns a unique hash for the alert. It is equivalent to
// the fingerprint of the alert's label set.
func (a *Alert) Fingerprint() model.Fingerprint {
return a.Labels.Fingerprint()
}
func (a *Alert) String() string {
s := fmt.Sprintf("%s[%s]", a.Name(), a.Fingerprint())
if a.Resolved() {
return s + "[resolved]"
}
return s + "[active]"
}
func (a *Alert) Resolved() bool {
if a.ResolvedAt.IsZero() {
return false
}
return !a.ResolvedAt.After(time.Now())
}
// alertTimeline is a list of alerts sorted by their timestamp.
type alertTimeline []*Alert
func (at alertTimeline) Len() int { return len(at) }
func (at alertTimeline) Less(i, j int) bool { return at[i].Timestamp.Before(at[j].Timestamp) }
func (at alertTimeline) Swap(i, j int) { at[i], at[j] = at[j], at[i] }
2015-09-25 16:14:46 +00:00
// A Silencer determines whether a given label set is muted.
type Silencer interface {
Mutes(model.LabelSet) bool
}
// A Silence determines whether a given label set is muted
// at the current time.
type Silence struct {
ID model.Fingerprint
2015-09-27 12:07:04 +00:00
// A set of matchers determining if an alert is affected
// by the silence.
2015-09-25 16:14:46 +00:00
Matchers Matchers
2015-09-27 12:07:04 +00:00
// The activity interval of the silence.
2015-09-27 12:25:56 +00:00
StartsAt, EndsAt time.Time
2015-09-25 16:14:46 +00:00
2015-09-27 12:07:04 +00:00
// Additional creation information.
CreateBy, Comment string
2015-09-25 16:14:46 +00:00
// timeFunc provides the time against which to evaluate
// the silence.
timeFunc func() time.Time
}
func (sil *Silence) Mutes(lset model.LabelSet) bool {
t := sil.timeFunc()
2015-09-27 12:25:56 +00:00
if t.Before(sil.StartsAt) || t.After(sil.EndsAt) {
2015-09-25 16:14:46 +00:00
return false
}
return sil.Matchers.Match(lset)
}
2015-09-27 12:25:56 +00:00
func (sil *Silence) UnmarshalJSON(b []byte) error {
var v = struct {
ID model.Fingerprint
Matchers []struct {
Name model.LabelName `json:"name"`
Value string `json:"value"`
IsRegex bool `json:"isRegex"`
} `json:"matchers"`
StartsAt time.Time `json:"startsAt"`
EndsAt time.Time `json:"endsAt"`
CreatedBy string `json:"createdBy"`
Comment string `json:"comment,omitempty"`
}{}
if err := json.Unmarshal(b, &v); err != nil {
return err
}
sil.ID = v.ID
sil.CreateBy = v.CreatedBy
sil.Comment = v.Comment
sil.StartsAt = v.StartsAt
sil.EndsAt = v.EndsAt
for _, m := range v.Matchers {
if !m.IsRegex {
sil.Matchers = append(sil.Matchers, NewMatcher(m.Name, m.Value))
continue
}
rem, err := NewRegexMatcher(m.Name, m.Value)
if err != nil {
return err
}
sil.Matchers = append(sil.Matchers, rem)
}
return nil
}
func (sil *Silence) MarshalJSON() ([]byte, error) {
type matcher struct {
Name model.LabelName `json:"name"`
Value string `json:"value"`
IsRegex bool `json:"isRegex"`
}
var v = struct {
ID model.Fingerprint
Matchers []matcher `json:"matchers"`
StartsAt time.Time `json:"startsAt"`
EndsAt time.Time `json:"endsAt"`
CreatedBy string `json:"createdBy"`
Comment string `json:"comment,omitempty"`
}{
ID: sil.ID,
StartsAt: sil.StartsAt,
EndsAt: sil.EndsAt,
CreatedBy: sil.CreateBy,
Comment: sil.Comment,
}
for _, m := range sil.Matchers {
v.Matchers = append(v.Matchers, matcher{
Name: m.Name,
Value: m.Value,
IsRegex: m.isRegex,
})
}
return json.Marshal(v)
}