2013-07-30 11:19:18 +00:00
|
|
|
// 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 (
|
|
|
|
"bytes"
|
2015-03-12 04:45:25 +00:00
|
|
|
"crypto/tls"
|
2013-07-30 11:19:18 +00:00
|
|
|
"encoding/json"
|
|
|
|
"flag"
|
|
|
|
"fmt"
|
2013-08-16 12:50:51 +00:00
|
|
|
"io"
|
2013-07-30 11:19:18 +00:00
|
|
|
"io/ioutil"
|
2015-03-12 04:45:25 +00:00
|
|
|
"net"
|
2013-07-30 11:19:18 +00:00
|
|
|
"net/http"
|
2013-08-15 07:05:12 +00:00
|
|
|
"net/smtp"
|
2015-03-12 20:01:16 +00:00
|
|
|
"os"
|
2015-03-12 04:45:25 +00:00
|
|
|
"strings"
|
2013-07-30 11:19:18 +00:00
|
|
|
"sync"
|
2013-08-15 07:05:12 +00:00
|
|
|
"text/template"
|
2013-07-30 11:19:18 +00:00
|
|
|
|
2013-08-27 13:32:08 +00:00
|
|
|
"github.com/golang/glog"
|
2015-02-16 20:11:00 +00:00
|
|
|
"github.com/thorduri/pushover"
|
2013-08-27 13:32:08 +00:00
|
|
|
|
2013-08-05 09:49:56 +00:00
|
|
|
pb "github.com/prometheus/alertmanager/config/generated"
|
2013-07-30 11:19:18 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const contentTypeJson = "application/json"
|
|
|
|
|
2015-02-16 19:35:45 +00:00
|
|
|
var bodyTmpl = template.Must(template.New("message").Parse(`From: Prometheus Alertmanager <{{.From}}>
|
|
|
|
To: {{.To}}
|
|
|
|
Subject: [ALERT] {{.Alert.Labels.alertname}}: {{.Alert.Summary}}
|
2013-08-15 07:05:12 +00:00
|
|
|
|
2015-02-16 19:35:45 +00:00
|
|
|
{{.Alert.Description}}
|
2013-08-15 07:05:12 +00:00
|
|
|
|
|
|
|
Grouping labels:
|
2015-02-16 19:35:45 +00:00
|
|
|
{{range $label, $value := .Alert.Labels}}
|
2013-08-16 12:50:51 +00:00
|
|
|
{{$label}} = "{{$value}}"{{end}}
|
2013-08-15 07:05:12 +00:00
|
|
|
|
|
|
|
Payload labels:
|
2015-02-16 19:35:45 +00:00
|
|
|
{{range $label, $value := .Alert.Payload}}
|
2013-08-16 12:50:51 +00:00
|
|
|
{{$label}} = "{{$value}}"{{end}}`))
|
2013-08-15 07:05:12 +00:00
|
|
|
|
2013-07-30 11:19:18 +00:00
|
|
|
var (
|
|
|
|
notificationBufferSize = flag.Int("notificationBufferSize", 1000, "Size of buffer for pending notifications.")
|
|
|
|
pagerdutyApiUrl = flag.String("pagerdutyApiUrl", "https://events.pagerduty.com/generic/2010-04-15/create_event.json", "PagerDuty API URL.")
|
2013-08-15 07:05:12 +00:00
|
|
|
smtpSmartHost = flag.String("smtpSmartHost", "", "Address of the smarthost to send all email notifications to.")
|
|
|
|
smtpSender = flag.String("smtpSender", "alertmanager@example.org", "Sender email address to use in email notifications.")
|
2013-07-30 11:19:18 +00:00
|
|
|
)
|
|
|
|
|
2013-08-27 13:32:08 +00:00
|
|
|
// A Notifier is responsible for sending notifications for alerts according to
|
2013-07-30 11:19:18 +00:00
|
|
|
// a provided notification configuration.
|
|
|
|
type Notifier interface {
|
|
|
|
// Queue a notification for asynchronous dispatching.
|
2013-08-27 13:32:08 +00:00
|
|
|
QueueNotification(a *Alert, configName string) error
|
2013-07-30 11:19:18 +00:00
|
|
|
// Replace current notification configs. Already enqueued messages will remain
|
|
|
|
// unaffected.
|
|
|
|
SetNotificationConfigs([]*pb.NotificationConfig)
|
2013-08-27 13:32:08 +00:00
|
|
|
// Start alert notification dispatch loop.
|
|
|
|
Dispatch()
|
|
|
|
// Stop the alert notification dispatch loop.
|
2013-07-30 11:19:18 +00:00
|
|
|
Close()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Request for sending a notification.
|
|
|
|
type notificationReq struct {
|
2013-08-27 13:32:08 +00:00
|
|
|
alert *Alert
|
2013-07-30 11:19:18 +00:00
|
|
|
notificationConfig *pb.NotificationConfig
|
|
|
|
}
|
|
|
|
|
|
|
|
// Alert notification multiplexer and dispatcher.
|
|
|
|
type notifier struct {
|
|
|
|
// Notifications that are queued to be sent.
|
|
|
|
pendingNotifications chan *notificationReq
|
|
|
|
|
|
|
|
// Mutex to protect the fields below.
|
|
|
|
mu sync.Mutex
|
|
|
|
// Map of notification configs by name.
|
|
|
|
notificationConfigs map[string]*pb.NotificationConfig
|
|
|
|
}
|
|
|
|
|
|
|
|
// Construct a new notifier.
|
|
|
|
func NewNotifier(configs []*pb.NotificationConfig) *notifier {
|
|
|
|
notifier := ¬ifier{
|
|
|
|
pendingNotifications: make(chan *notificationReq, *notificationBufferSize),
|
|
|
|
}
|
|
|
|
notifier.SetNotificationConfigs(configs)
|
|
|
|
return notifier
|
|
|
|
}
|
|
|
|
|
|
|
|
func (n *notifier) SetNotificationConfigs(configs []*pb.NotificationConfig) {
|
|
|
|
n.mu.Lock()
|
|
|
|
defer n.mu.Unlock()
|
|
|
|
|
|
|
|
n.notificationConfigs = map[string]*pb.NotificationConfig{}
|
|
|
|
for _, c := range configs {
|
|
|
|
n.notificationConfigs[c.GetName()] = c
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-27 13:32:08 +00:00
|
|
|
func (n *notifier) QueueNotification(a *Alert, configName string) error {
|
2013-07-30 11:19:18 +00:00
|
|
|
n.mu.Lock()
|
|
|
|
nc, ok := n.notificationConfigs[configName]
|
|
|
|
n.mu.Unlock()
|
|
|
|
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("No such notification configuration %s", configName)
|
|
|
|
}
|
|
|
|
|
|
|
|
// We need to save a reference to the notification config in the
|
|
|
|
// notificationReq since the config might be replaced or gone at the time the
|
|
|
|
// message gets dispatched.
|
|
|
|
n.pendingNotifications <- ¬ificationReq{
|
2013-08-27 13:32:08 +00:00
|
|
|
alert: a,
|
2013-07-30 11:19:18 +00:00
|
|
|
notificationConfig: nc,
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2013-08-27 13:32:08 +00:00
|
|
|
func (n *notifier) sendPagerDutyNotification(serviceKey string, a *Alert) error {
|
2013-07-30 11:19:18 +00:00
|
|
|
// http://developer.pagerduty.com/documentation/integration/events/trigger
|
2013-08-27 13:32:08 +00:00
|
|
|
incidentKey := a.Fingerprint()
|
2013-07-30 11:19:18 +00:00
|
|
|
buf, err := json.Marshal(map[string]interface{}{
|
|
|
|
"service_key": serviceKey,
|
|
|
|
"event_type": "trigger",
|
2013-08-27 13:32:08 +00:00
|
|
|
"description": a.Description,
|
2013-07-30 11:19:18 +00:00
|
|
|
"incident_key": incidentKey,
|
|
|
|
"details": map[string]interface{}{
|
2013-08-27 13:32:08 +00:00
|
|
|
"grouping_labels": a.Labels,
|
|
|
|
"extra_labels": a.Payload,
|
2013-07-30 11:19:18 +00:00
|
|
|
},
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
resp, err := http.Post(
|
|
|
|
*pagerdutyApiUrl,
|
|
|
|
contentTypeJson,
|
|
|
|
bytes.NewBuffer(buf),
|
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer resp.Body.Close()
|
|
|
|
|
|
|
|
respBuf, err := ioutil.ReadAll(resp.Body)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2013-08-27 13:32:08 +00:00
|
|
|
glog.Infof("Sent PagerDuty notification: %v: HTTP %d: %s", incidentKey, resp.StatusCode, respBuf)
|
2013-07-30 11:19:18 +00:00
|
|
|
// BUG: Check response for result of operation.
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-02-16 19:35:45 +00:00
|
|
|
func writeEmailBody(w io.Writer, from string, to string, a *Alert) error {
|
|
|
|
err := bodyTmpl.Execute(w, struct {
|
|
|
|
From string
|
|
|
|
To string
|
|
|
|
Alert *Alert
|
|
|
|
}{
|
|
|
|
From: from,
|
|
|
|
To: to,
|
|
|
|
Alert: a,
|
|
|
|
})
|
|
|
|
if err != nil {
|
2013-08-20 14:23:33 +00:00
|
|
|
return err
|
|
|
|
}
|
2013-08-16 12:50:51 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-02-16 19:35:45 +00:00
|
|
|
func (n *notifier) sendEmailNotification(to string, a *Alert) error {
|
2013-08-15 07:05:12 +00:00
|
|
|
// Connect to the SMTP smarthost.
|
|
|
|
c, err := smtp.Dial(*smtpSmartHost)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer c.Quit()
|
|
|
|
|
2015-03-12 04:45:25 +00:00
|
|
|
hasAuth, _ := c.Extension("AUTH")
|
2015-03-12 20:01:16 +00:00
|
|
|
smtpAuth := os.Getenv("SMTP_AUTH")
|
|
|
|
if hasAuth && smtpAuth != "" {
|
|
|
|
idx := strings.IndexRune(smtpAuth, ':')
|
2015-03-12 04:45:25 +00:00
|
|
|
if idx < 0 {
|
2015-03-12 20:01:16 +00:00
|
|
|
return fmt.Errorf("SMTP_AUTH must be in the format username:password")
|
2015-03-12 04:45:25 +00:00
|
|
|
}
|
2015-03-12 20:01:16 +00:00
|
|
|
username := smtpAuth[:idx]
|
|
|
|
password := smtpAuth[idx+1:]
|
2015-03-12 04:45:25 +00:00
|
|
|
host, _, _ := net.SplitHostPort(*smtpSmartHost)
|
|
|
|
|
|
|
|
if hasTLS, _ := c.Extension("TLS"); hasTLS {
|
|
|
|
cfg := &tls.Config{ServerName: host}
|
|
|
|
if err := c.StartTLS(cfg); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := c.Auth(smtp.PlainAuth("", username, password, host)); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-15 07:05:12 +00:00
|
|
|
// Set the sender and recipient.
|
|
|
|
c.Mail(*smtpSender)
|
2015-02-16 19:35:45 +00:00
|
|
|
c.Rcpt(to)
|
2013-08-15 07:05:12 +00:00
|
|
|
|
|
|
|
// Send the email body.
|
|
|
|
wc, err := c.Data()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer wc.Close()
|
|
|
|
|
2015-02-16 19:35:45 +00:00
|
|
|
return writeEmailBody(wc, *smtpSender, to, a)
|
2013-07-30 11:19:18 +00:00
|
|
|
}
|
|
|
|
|
2015-02-16 20:11:00 +00:00
|
|
|
func (n *notifier) sendPushoverNotification(token, userKey string, a *Alert) error {
|
|
|
|
po, err := pushover.NewPushover(token, userKey)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Validate credentials
|
|
|
|
err = po.Validate()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Send pushover message
|
|
|
|
_, _, err = po.Push(&pushover.Message{
|
|
|
|
Title: a.Summary,
|
|
|
|
Message: a.Description,
|
|
|
|
})
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2013-08-27 13:32:08 +00:00
|
|
|
func (n *notifier) handleNotification(a *Alert, config *pb.NotificationConfig) {
|
2013-07-30 11:19:18 +00:00
|
|
|
for _, pdConfig := range config.PagerdutyConfig {
|
2013-08-27 13:32:08 +00:00
|
|
|
if err := n.sendPagerDutyNotification(pdConfig.GetServiceKey(), a); err != nil {
|
|
|
|
glog.Error("Error sending PagerDuty notification: ", err)
|
2013-07-30 11:19:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
for _, emailConfig := range config.EmailConfig {
|
2013-08-15 07:05:12 +00:00
|
|
|
if *smtpSmartHost == "" {
|
2013-08-27 13:32:08 +00:00
|
|
|
glog.Warning("No SMTP smarthost configured, not sending email notification.")
|
2013-08-15 08:39:10 +00:00
|
|
|
continue
|
2013-08-15 07:05:12 +00:00
|
|
|
}
|
2013-08-27 13:32:08 +00:00
|
|
|
if err := n.sendEmailNotification(emailConfig.GetEmail(), a); err != nil {
|
|
|
|
glog.Error("Error sending email notification: ", err)
|
2013-07-30 11:19:18 +00:00
|
|
|
}
|
|
|
|
}
|
2015-02-16 20:11:00 +00:00
|
|
|
for _, poConfig := range config.PushoverConfig {
|
|
|
|
if err := n.sendPushoverNotification(poConfig.GetToken(), poConfig.GetUserKey(), a); err != nil {
|
|
|
|
glog.Error("Error sending Pushover notification: ", err)
|
|
|
|
}
|
|
|
|
}
|
2013-07-30 11:19:18 +00:00
|
|
|
}
|
|
|
|
|
2013-08-27 13:32:08 +00:00
|
|
|
func (n *notifier) Dispatch() {
|
2013-07-30 12:49:16 +00:00
|
|
|
for req := range n.pendingNotifications {
|
2013-08-27 13:32:08 +00:00
|
|
|
n.handleNotification(req.alert, req.notificationConfig)
|
2013-07-30 11:19:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (n *notifier) Close() {
|
2013-07-30 12:49:16 +00:00
|
|
|
close(n.pendingNotifications)
|
2013-07-30 11:19:18 +00:00
|
|
|
}
|