2015-10-11 15:24:49 +00:00
|
|
|
// Copyright 2015 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.
|
|
|
|
|
2015-09-29 12:45:38 +00:00
|
|
|
package notify
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2015-09-29 13:12:31 +00:00
|
|
|
"sync"
|
|
|
|
"time"
|
2015-09-29 12:45:38 +00:00
|
|
|
|
2015-10-09 07:37:32 +00:00
|
|
|
"github.com/cenkalti/backoff"
|
2015-09-29 13:12:31 +00:00
|
|
|
"github.com/prometheus/common/log"
|
|
|
|
"github.com/prometheus/common/model"
|
2015-09-29 12:45:38 +00:00
|
|
|
"golang.org/x/net/context"
|
|
|
|
|
2015-09-29 13:12:31 +00:00
|
|
|
"github.com/prometheus/alertmanager/provider"
|
2015-09-29 12:45:38 +00:00
|
|
|
"github.com/prometheus/alertmanager/types"
|
|
|
|
)
|
|
|
|
|
2015-10-09 06:58:44 +00:00
|
|
|
// The minimum timeout that is set for the context of a call
|
|
|
|
// to a notification pipeline.
|
|
|
|
const MinTimeout = 10 * time.Second
|
|
|
|
|
2015-09-29 13:12:31 +00:00
|
|
|
type notifyKey int
|
|
|
|
|
|
|
|
const (
|
2015-10-09 06:43:39 +00:00
|
|
|
keyDestination notifyKey = iota
|
|
|
|
keyRepeatInterval
|
|
|
|
keySendResolved
|
2015-10-16 14:55:56 +00:00
|
|
|
keyGroupLabels
|
2015-10-09 06:43:39 +00:00
|
|
|
keyNow
|
2015-09-29 13:12:31 +00:00
|
|
|
)
|
|
|
|
|
2015-10-09 06:43:39 +00:00
|
|
|
func WithDestination(ctx context.Context, dest string) context.Context {
|
|
|
|
return context.WithValue(ctx, keyDestination, dest)
|
|
|
|
}
|
|
|
|
|
|
|
|
func WithRepeatInterval(ctx context.Context, t time.Duration) context.Context {
|
|
|
|
return context.WithValue(ctx, keyRepeatInterval, t)
|
|
|
|
}
|
|
|
|
|
|
|
|
func WithSendResolved(ctx context.Context, b bool) context.Context {
|
|
|
|
return context.WithValue(ctx, keySendResolved, b)
|
|
|
|
}
|
|
|
|
|
2015-10-16 14:55:56 +00:00
|
|
|
func WithGroupLabels(ctx context.Context, lset model.LabelSet) context.Context {
|
|
|
|
return context.WithValue(ctx, keyGroupLabels, lset)
|
2015-10-09 06:43:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func WithNow(ctx context.Context, t time.Time) context.Context {
|
|
|
|
return context.WithValue(ctx, keyNow, t)
|
|
|
|
}
|
|
|
|
|
|
|
|
func Destination(ctx context.Context) (string, bool) {
|
|
|
|
v, ok := ctx.Value(keyDestination).(string)
|
|
|
|
return v, ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func RepeatInterval(ctx context.Context) (time.Duration, bool) {
|
|
|
|
v, ok := ctx.Value(keyRepeatInterval).(time.Duration)
|
|
|
|
return v, ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func SendResolved(ctx context.Context) (bool, bool) {
|
|
|
|
v, ok := ctx.Value(keySendResolved).(bool)
|
|
|
|
return v, ok
|
|
|
|
}
|
|
|
|
|
2015-10-16 14:55:56 +00:00
|
|
|
func GroupLabels(ctx context.Context) (model.LabelSet, bool) {
|
|
|
|
v, ok := ctx.Value(keyGroupLabels).(model.LabelSet)
|
2015-10-09 06:43:39 +00:00
|
|
|
return v, ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func Now(ctx context.Context) (time.Time, bool) {
|
|
|
|
v, ok := ctx.Value(keyNow).(time.Time)
|
|
|
|
return v, ok
|
|
|
|
}
|
|
|
|
|
2015-09-29 13:12:31 +00:00
|
|
|
type Notifier interface {
|
|
|
|
Notify(context.Context, ...*types.Alert) error
|
2015-09-29 13:02:15 +00:00
|
|
|
}
|
|
|
|
|
2015-09-29 13:12:31 +00:00
|
|
|
// Notifiers fans out notifications to all notifiers it holds
|
|
|
|
// at once.
|
2015-10-11 13:37:21 +00:00
|
|
|
type Fanout map[string]Notifier
|
2015-09-29 13:12:31 +00:00
|
|
|
|
2015-10-11 14:54:31 +00:00
|
|
|
func (ns Fanout) Notify(ctx context.Context, alerts ...*types.Alert) error {
|
2015-10-11 10:40:43 +00:00
|
|
|
var (
|
|
|
|
wg sync.WaitGroup
|
|
|
|
me types.MultiError
|
|
|
|
)
|
2015-09-29 13:12:31 +00:00
|
|
|
wg.Add(len(ns))
|
|
|
|
|
2015-10-11 13:37:21 +00:00
|
|
|
dest, ok := Destination(ctx)
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("destination missing")
|
|
|
|
}
|
|
|
|
|
2015-10-11 14:54:31 +00:00
|
|
|
for suffix, n := range ns {
|
2015-10-11 13:37:21 +00:00
|
|
|
// Suffix the destination with the unique key for the fanout.
|
2015-10-11 14:54:31 +00:00
|
|
|
foCtx := WithDestination(ctx, fmt.Sprintf("%s/%s", dest, suffix))
|
2015-10-11 13:37:21 +00:00
|
|
|
|
2015-09-29 13:12:31 +00:00
|
|
|
go func(n Notifier) {
|
2015-10-11 13:37:21 +00:00
|
|
|
if err := n.Notify(foCtx, alerts...); err != nil {
|
2015-10-11 10:40:43 +00:00
|
|
|
me = append(me, err)
|
2015-09-29 13:12:31 +00:00
|
|
|
log.Errorf("Error on notify: %s", err)
|
|
|
|
}
|
|
|
|
wg.Done()
|
|
|
|
}(n)
|
|
|
|
}
|
|
|
|
|
|
|
|
wg.Wait()
|
|
|
|
|
2015-10-11 14:54:31 +00:00
|
|
|
if len(me) > 0 {
|
|
|
|
return me
|
|
|
|
}
|
|
|
|
return nil
|
2015-09-29 12:45:38 +00:00
|
|
|
}
|
|
|
|
|
2015-10-09 07:37:32 +00:00
|
|
|
type RetryNotifier struct {
|
2015-10-11 14:54:31 +00:00
|
|
|
notifier Notifier
|
|
|
|
}
|
|
|
|
|
|
|
|
func Retry(n Notifier) *RetryNotifier {
|
|
|
|
return &RetryNotifier{notifier: n}
|
2015-10-09 07:37:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (n *RetryNotifier) Notify(ctx context.Context, alerts ...*types.Alert) error {
|
|
|
|
var (
|
|
|
|
i = 0
|
|
|
|
b = backoff.NewExponentialBackOff()
|
|
|
|
tick = backoff.NewTicker(b)
|
|
|
|
)
|
|
|
|
defer tick.Stop()
|
|
|
|
|
|
|
|
for {
|
|
|
|
i++
|
|
|
|
|
|
|
|
select {
|
|
|
|
case <-tick.C:
|
2015-10-11 14:54:31 +00:00
|
|
|
if err := n.notifier.Notify(ctx, alerts...); err != nil {
|
2015-10-09 08:48:25 +00:00
|
|
|
log.Warnf("Notify attempt %d failed: %s", i, err)
|
2015-10-09 07:37:32 +00:00
|
|
|
} else {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
case <-ctx.Done():
|
|
|
|
return ctx.Err()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-09-29 13:12:31 +00:00
|
|
|
type DedupingNotifier struct {
|
|
|
|
notifies provider.Notifies
|
|
|
|
notifier Notifier
|
2015-09-29 12:45:38 +00:00
|
|
|
}
|
|
|
|
|
2015-10-11 14:54:31 +00:00
|
|
|
func Dedup(notifies provider.Notifies, n Notifier) *DedupingNotifier {
|
|
|
|
return &DedupingNotifier{notifies: notifies, notifier: n}
|
2015-09-29 12:45:38 +00:00
|
|
|
}
|
|
|
|
|
2015-09-29 13:12:31 +00:00
|
|
|
func (n *DedupingNotifier) Notify(ctx context.Context, alerts ...*types.Alert) error {
|
2015-10-09 06:43:39 +00:00
|
|
|
name, ok := Destination(ctx)
|
2015-09-29 13:12:31 +00:00
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("notifier name missing")
|
|
|
|
}
|
|
|
|
|
2015-10-09 06:43:39 +00:00
|
|
|
repeatInterval, ok := RepeatInterval(ctx)
|
2015-09-29 13:12:31 +00:00
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("repeat interval missing")
|
2015-09-29 12:45:38 +00:00
|
|
|
}
|
2015-09-29 13:12:31 +00:00
|
|
|
|
2015-10-09 06:43:39 +00:00
|
|
|
sendResolved, ok := SendResolved(ctx)
|
2015-09-29 13:12:31 +00:00
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("send resolved missing")
|
|
|
|
}
|
|
|
|
|
2015-10-09 06:43:39 +00:00
|
|
|
now, ok := Now(ctx)
|
2015-10-09 06:26:41 +00:00
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("now time missing")
|
|
|
|
}
|
|
|
|
|
2015-09-29 13:12:31 +00:00
|
|
|
var fps []model.Fingerprint
|
2015-09-29 12:45:38 +00:00
|
|
|
for _, a := range alerts {
|
2015-09-29 13:12:31 +00:00
|
|
|
fps = append(fps, a.Fingerprint())
|
2015-09-29 12:45:38 +00:00
|
|
|
}
|
|
|
|
|
2015-09-29 13:12:31 +00:00
|
|
|
notifies, err := n.notifies.Get(name, fps...)
|
|
|
|
if err != nil {
|
2015-09-29 12:45:38 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-09-30 17:03:04 +00:00
|
|
|
var (
|
|
|
|
doResend bool
|
|
|
|
resendQueue []*types.Alert
|
|
|
|
filtered []*types.Alert
|
|
|
|
)
|
2015-09-29 13:12:31 +00:00
|
|
|
for i, a := range alerts {
|
|
|
|
last := notifies[i]
|
|
|
|
|
|
|
|
if last != nil {
|
|
|
|
if a.Resolved() {
|
|
|
|
if !sendResolved {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
// If the initial alert was not delivered successfully,
|
|
|
|
// there is no point in sending a resolved notification.
|
|
|
|
if !last.Resolved && !last.Delivered {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if last.Resolved && last.Delivered {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
} else if !last.Resolved {
|
|
|
|
// Do not send again if last was delivered unless
|
|
|
|
// the repeat interval has already passed.
|
2015-09-30 17:03:04 +00:00
|
|
|
if last.Delivered {
|
|
|
|
if !now.After(last.Timestamp.Add(repeatInterval)) {
|
|
|
|
// To not repeat initial batch fragmentation after the repeat interval
|
|
|
|
// has passed, store them and send them anyway if on of the other
|
|
|
|
// alerts has already passed the repeat interval.
|
|
|
|
// This way we unify batches again.
|
|
|
|
resendQueue = append(resendQueue, a)
|
|
|
|
|
|
|
|
continue
|
|
|
|
} else {
|
|
|
|
doResend = true
|
|
|
|
}
|
2015-09-29 13:12:31 +00:00
|
|
|
}
|
|
|
|
}
|
2015-10-02 13:58:37 +00:00
|
|
|
} else if a.Resolved() && !sendResolved {
|
|
|
|
continue
|
2015-09-29 13:12:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
filtered = append(filtered, a)
|
2015-09-30 17:03:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// As we are resending an alert anyway, resend all of them even if their
|
|
|
|
// repeat interval has not yet passed.
|
|
|
|
if doResend {
|
|
|
|
filtered = append(filtered, resendQueue...)
|
|
|
|
}
|
|
|
|
|
|
|
|
var newNotifies []*types.Notify
|
2015-09-29 13:12:31 +00:00
|
|
|
|
2015-09-30 17:03:04 +00:00
|
|
|
for _, a := range filtered {
|
2015-09-29 13:12:31 +00:00
|
|
|
newNotifies = append(newNotifies, &types.Notify{
|
|
|
|
Alert: a.Fingerprint(),
|
|
|
|
SendTo: name,
|
|
|
|
Delivered: true,
|
|
|
|
Resolved: a.Resolved(),
|
|
|
|
Timestamp: now,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2015-09-30 16:44:33 +00:00
|
|
|
// The deduping notifier is the last one before actually sending notifications.
|
|
|
|
// Thus, this is the place where we abort if after all filtering, nothing is left.
|
|
|
|
if len(filtered) == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-09-29 13:12:31 +00:00
|
|
|
if err := n.notifier.Notify(ctx, filtered...); err != nil {
|
2015-09-29 12:45:38 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-10-06 18:40:52 +00:00
|
|
|
return n.notifies.Set(newNotifies...)
|
2015-09-29 13:12:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// RoutedNotifier dispatches the alerts to one of a set of
|
|
|
|
// named notifiers based on the name value provided in the context.
|
2015-10-11 14:54:31 +00:00
|
|
|
type Router map[string]Notifier
|
2015-09-29 13:12:31 +00:00
|
|
|
|
2015-10-11 14:54:31 +00:00
|
|
|
func (rs Router) Notify(ctx context.Context, alerts ...*types.Alert) error {
|
|
|
|
dest, ok := Destination(ctx)
|
2015-09-29 13:12:31 +00:00
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("notifier name missing")
|
|
|
|
}
|
|
|
|
|
2015-10-11 14:54:31 +00:00
|
|
|
notifier, ok := rs[dest]
|
2015-09-29 13:12:31 +00:00
|
|
|
if !ok {
|
2015-10-11 14:54:31 +00:00
|
|
|
return fmt.Errorf("notifier %q does not exist", dest)
|
2015-09-29 13:12:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return notifier.Notify(ctx, alerts...)
|
|
|
|
}
|
|
|
|
|
|
|
|
// MutingNotifier wraps a notifier and applies a Silencer
|
|
|
|
// before sending out an alert.
|
|
|
|
type MutingNotifier struct {
|
|
|
|
types.Muter
|
2015-10-11 14:54:31 +00:00
|
|
|
notifier Notifier
|
|
|
|
}
|
|
|
|
|
|
|
|
func Mute(m types.Muter, n Notifier) *MutingNotifier {
|
|
|
|
return &MutingNotifier{Muter: m, notifier: n}
|
2015-09-29 13:12:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (n *MutingNotifier) Notify(ctx context.Context, alerts ...*types.Alert) error {
|
|
|
|
var filtered []*types.Alert
|
|
|
|
for _, a := range alerts {
|
|
|
|
// TODO(fabxc): increment total alerts counter.
|
|
|
|
// Do not send the alert if the silencer mutes it.
|
|
|
|
if !n.Mutes(a.Labels) {
|
|
|
|
// TODO(fabxc): increment muted alerts counter.
|
|
|
|
filtered = append(filtered, a)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-11 14:54:31 +00:00
|
|
|
return n.notifier.Notify(ctx, filtered...)
|
2015-09-29 13:12:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type LogNotifier struct {
|
2015-10-11 14:54:31 +00:00
|
|
|
log log.Logger
|
|
|
|
notifier Notifier
|
|
|
|
}
|
|
|
|
|
|
|
|
func Log(n Notifier, log log.Logger) *LogNotifier {
|
|
|
|
return &LogNotifier{log: log, notifier: n}
|
2015-09-29 13:12:31 +00:00
|
|
|
}
|
|
|
|
|
2015-10-11 14:54:31 +00:00
|
|
|
func (n *LogNotifier) Notify(ctx context.Context, alerts ...*types.Alert) error {
|
|
|
|
n.log.Debugf("notify %v", alerts)
|
2015-09-29 13:12:31 +00:00
|
|
|
|
2015-10-11 14:54:31 +00:00
|
|
|
if n.notifier != nil {
|
|
|
|
return n.notifier.Notify(ctx, alerts...)
|
2015-09-29 13:12:31 +00:00
|
|
|
}
|
2015-09-29 12:45:38 +00:00
|
|
|
return nil
|
|
|
|
}
|