2015-01-21 11:07:45 -08:00
|
|
|
// Copyright 2013 The Prometheus Authors
|
2013-07-30 08:18:07 -07:00
|
|
|
// 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.
|
|
|
|
|
2016-03-01 03:37:22 -08:00
|
|
|
package notifier
|
2013-07-30 08:18:07 -07:00
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"encoding/json"
|
2015-12-10 07:31:50 -08:00
|
|
|
"fmt"
|
2016-11-23 08:03:22 -08:00
|
|
|
"net"
|
2013-07-30 08:18:07 -07:00
|
|
|
"net/http"
|
2016-11-23 08:03:22 -08:00
|
|
|
"net/url"
|
|
|
|
"path"
|
2016-02-04 02:56:14 -08:00
|
|
|
"strings"
|
2015-09-01 13:17:02 -07:00
|
|
|
"sync"
|
2016-06-02 05:25:19 -07:00
|
|
|
"sync/atomic"
|
2013-07-30 08:18:07 -07:00
|
|
|
"time"
|
|
|
|
|
2014-09-24 07:52:00 -07:00
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
2015-10-03 01:21:43 -07:00
|
|
|
"github.com/prometheus/common/log"
|
2015-08-20 08:18:46 -07:00
|
|
|
"github.com/prometheus/common/model"
|
2015-12-10 07:31:50 -08:00
|
|
|
"golang.org/x/net/context"
|
|
|
|
"golang.org/x/net/context/ctxhttp"
|
2013-07-30 08:18:07 -07:00
|
|
|
|
2015-09-01 13:17:02 -07:00
|
|
|
"github.com/prometheus/prometheus/config"
|
2016-11-23 08:03:22 -08:00
|
|
|
"github.com/prometheus/prometheus/discovery"
|
2016-08-09 03:36:23 -07:00
|
|
|
"github.com/prometheus/prometheus/relabel"
|
2016-11-23 08:03:22 -08:00
|
|
|
"github.com/prometheus/prometheus/retrieval"
|
2013-07-30 08:18:07 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2015-12-10 07:31:50 -08:00
|
|
|
alertPushEndpoint = "/api/v1/alerts"
|
|
|
|
contentTypeJSON = "application/json"
|
2013-07-30 08:18:07 -07:00
|
|
|
)
|
|
|
|
|
2014-06-18 10:43:15 -07:00
|
|
|
// String constants for instrumentation.
|
|
|
|
const (
|
2016-06-02 05:25:19 -07:00
|
|
|
namespace = "prometheus"
|
|
|
|
subsystem = "notifications"
|
|
|
|
alertmanagerLabel = "alertmanager"
|
2014-06-18 10:43:15 -07:00
|
|
|
)
|
|
|
|
|
2016-05-11 05:20:36 -07:00
|
|
|
// Notifier is responsible for dispatching alert notifications to an
|
2015-12-10 07:31:50 -08:00
|
|
|
// alert manager service.
|
2016-03-01 03:37:22 -08:00
|
|
|
type Notifier struct {
|
2015-12-10 07:31:50 -08:00
|
|
|
queue model.Alerts
|
2016-03-01 03:37:22 -08:00
|
|
|
opts *Options
|
2013-08-09 10:32:55 -07:00
|
|
|
|
2015-12-10 07:31:50 -08:00
|
|
|
more chan struct{}
|
|
|
|
mtx sync.RWMutex
|
|
|
|
ctx context.Context
|
|
|
|
cancel func()
|
2013-08-09 10:32:55 -07:00
|
|
|
|
2016-06-02 05:25:19 -07:00
|
|
|
latency *prometheus.SummaryVec
|
|
|
|
errors *prometheus.CounterVec
|
|
|
|
sent *prometheus.CounterVec
|
2015-12-10 07:31:50 -08:00
|
|
|
dropped prometheus.Counter
|
|
|
|
queueLength prometheus.Gauge
|
|
|
|
queueCapacity prometheus.Metric
|
2016-11-23 08:03:22 -08:00
|
|
|
|
|
|
|
alertmanagers []*alertmanagerSet
|
|
|
|
cancelDiscovery func()
|
2013-07-30 08:18:07 -07:00
|
|
|
}
|
|
|
|
|
2016-05-11 05:20:36 -07:00
|
|
|
// Options are the configurable parameters of a Handler.
|
2016-03-01 03:37:22 -08:00
|
|
|
type Options struct {
|
2016-11-23 08:03:22 -08:00
|
|
|
QueueCapacity int
|
|
|
|
ExternalLabels model.LabelSet
|
|
|
|
RelabelConfigs []*config.RelabelConfig
|
2015-06-15 04:03:17 -07:00
|
|
|
}
|
|
|
|
|
2016-08-09 01:08:15 -07:00
|
|
|
// New constructs a new Notifier.
|
2016-03-01 03:37:22 -08:00
|
|
|
func New(o *Options) *Notifier {
|
2015-12-10 07:31:50 -08:00
|
|
|
ctx, cancel := context.WithCancel(context.Background())
|
2014-10-10 05:19:02 -07:00
|
|
|
|
2016-03-01 03:37:22 -08:00
|
|
|
return &Notifier{
|
2015-12-10 07:31:50 -08:00
|
|
|
queue: make(model.Alerts, 0, o.QueueCapacity),
|
|
|
|
ctx: ctx,
|
|
|
|
cancel: cancel,
|
|
|
|
more: make(chan struct{}, 1),
|
|
|
|
opts: o,
|
2014-06-18 10:43:15 -07:00
|
|
|
|
2016-06-02 05:25:19 -07:00
|
|
|
latency: prometheus.NewSummaryVec(prometheus.SummaryOpts{
|
2015-01-13 09:33:35 -08:00
|
|
|
Namespace: namespace,
|
|
|
|
Subsystem: subsystem,
|
2015-12-10 07:31:50 -08:00
|
|
|
Name: "latency_seconds",
|
2015-01-13 09:33:35 -08:00
|
|
|
Help: "Latency quantiles for sending alert notifications (not including dropped notifications).",
|
2016-06-02 05:25:19 -07:00
|
|
|
},
|
|
|
|
[]string{alertmanagerLabel},
|
|
|
|
),
|
|
|
|
errors: prometheus.NewCounterVec(prometheus.CounterOpts{
|
2015-01-13 09:33:35 -08:00
|
|
|
Namespace: namespace,
|
|
|
|
Subsystem: subsystem,
|
|
|
|
Name: "errors_total",
|
|
|
|
Help: "Total number of errors sending alert notifications.",
|
2016-06-02 05:25:19 -07:00
|
|
|
},
|
|
|
|
[]string{alertmanagerLabel},
|
|
|
|
),
|
|
|
|
sent: prometheus.NewCounterVec(prometheus.CounterOpts{
|
2015-12-10 07:31:50 -08:00
|
|
|
Namespace: namespace,
|
|
|
|
Subsystem: subsystem,
|
|
|
|
Name: "sent_total",
|
|
|
|
Help: "Total number of alerts successfully sent.",
|
2016-06-02 05:25:19 -07:00
|
|
|
},
|
|
|
|
[]string{alertmanagerLabel},
|
|
|
|
),
|
2015-12-10 07:31:50 -08:00
|
|
|
dropped: prometheus.NewCounter(prometheus.CounterOpts{
|
2015-01-13 09:33:35 -08:00
|
|
|
Namespace: namespace,
|
|
|
|
Subsystem: subsystem,
|
|
|
|
Name: "dropped_total",
|
2015-12-10 07:31:50 -08:00
|
|
|
Help: "Total number of alerts dropped due to alert manager missing in configuration.",
|
2015-01-13 09:33:35 -08:00
|
|
|
}),
|
2015-12-10 07:31:50 -08:00
|
|
|
queueLength: prometheus.NewGauge(prometheus.GaugeOpts{
|
2014-07-23 10:55:33 -07:00
|
|
|
Namespace: namespace,
|
|
|
|
Subsystem: subsystem,
|
|
|
|
Name: "queue_length",
|
|
|
|
Help: "The number of alert notifications in the queue.",
|
|
|
|
}),
|
2015-12-10 07:31:50 -08:00
|
|
|
queueCapacity: prometheus.MustNewConstMetric(
|
2014-07-23 10:55:33 -07:00
|
|
|
prometheus.NewDesc(
|
|
|
|
prometheus.BuildFQName(namespace, subsystem, "queue_capacity"),
|
|
|
|
"The capacity of the alert notifications queue.",
|
|
|
|
nil, nil,
|
|
|
|
),
|
|
|
|
prometheus.GaugeValue,
|
2015-06-15 04:03:17 -07:00
|
|
|
float64(o.QueueCapacity),
|
2014-06-18 10:43:15 -07:00
|
|
|
),
|
2013-07-30 08:18:07 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-01 13:17:02 -07:00
|
|
|
// ApplyConfig updates the status state as the new config requires.
|
2016-07-11 07:24:54 -07:00
|
|
|
func (n *Notifier) ApplyConfig(conf *config.Config) error {
|
2015-09-01 13:17:02 -07:00
|
|
|
n.mtx.Lock()
|
|
|
|
defer n.mtx.Unlock()
|
|
|
|
|
2015-12-10 07:31:50 -08:00
|
|
|
n.opts.ExternalLabels = conf.GlobalConfig.ExternalLabels
|
2016-08-09 04:09:36 -07:00
|
|
|
n.opts.RelabelConfigs = conf.AlertingConfig.AlertRelabelConfigs
|
2016-11-23 08:03:22 -08:00
|
|
|
|
|
|
|
amSets := []*alertmanagerSet{}
|
|
|
|
ctx, cancel := context.WithCancel(n.ctx)
|
|
|
|
|
2016-11-24 06:17:50 -08:00
|
|
|
for _, cfg := range conf.AlertingConfig.AlertmanagerConfigs {
|
2016-11-23 08:03:22 -08:00
|
|
|
ams, err := newAlertmanagerSet(cfg)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
amSets = append(amSets, ams)
|
|
|
|
}
|
|
|
|
|
|
|
|
// After all sets were created successfully, start them and cancel the
|
|
|
|
// old ones.
|
|
|
|
for _, ams := range amSets {
|
|
|
|
go ams.ts.Run(ctx)
|
|
|
|
ams.ts.UpdateProviders(discovery.ProvidersFromConfig(ams.cfg.ServiceDiscoveryConfig))
|
|
|
|
}
|
|
|
|
if n.cancelDiscovery != nil {
|
|
|
|
n.cancelDiscovery()
|
|
|
|
}
|
|
|
|
|
|
|
|
n.cancelDiscovery = cancel
|
|
|
|
n.alertmanagers = amSets
|
|
|
|
|
2016-07-11 07:24:54 -07:00
|
|
|
return nil
|
2015-09-01 13:17:02 -07:00
|
|
|
}
|
|
|
|
|
2015-12-10 07:31:50 -08:00
|
|
|
const maxBatchSize = 64
|
|
|
|
|
2016-03-01 03:37:22 -08:00
|
|
|
func (n *Notifier) queueLen() int {
|
2015-09-01 13:17:02 -07:00
|
|
|
n.mtx.RLock()
|
|
|
|
defer n.mtx.RUnlock()
|
|
|
|
|
2015-12-10 07:31:50 -08:00
|
|
|
return len(n.queue)
|
|
|
|
}
|
2013-07-30 08:18:07 -07:00
|
|
|
|
2016-03-01 03:37:22 -08:00
|
|
|
func (n *Notifier) nextBatch() []*model.Alert {
|
2015-12-10 07:31:50 -08:00
|
|
|
n.mtx.Lock()
|
|
|
|
defer n.mtx.Unlock()
|
|
|
|
|
|
|
|
var alerts model.Alerts
|
|
|
|
|
|
|
|
if len(n.queue) > maxBatchSize {
|
|
|
|
alerts = append(make(model.Alerts, 0, maxBatchSize), n.queue[:maxBatchSize]...)
|
|
|
|
n.queue = n.queue[maxBatchSize:]
|
|
|
|
} else {
|
|
|
|
alerts = append(make(model.Alerts, 0, len(n.queue)), n.queue...)
|
|
|
|
n.queue = n.queue[:0]
|
2013-07-30 08:18:07 -07:00
|
|
|
}
|
2015-12-10 07:31:50 -08:00
|
|
|
|
|
|
|
return alerts
|
2013-07-30 08:18:07 -07:00
|
|
|
}
|
|
|
|
|
2014-10-10 05:19:02 -07:00
|
|
|
// Run dispatches notifications continuously.
|
2016-03-01 03:37:22 -08:00
|
|
|
func (n *Notifier) Run() {
|
2015-12-10 07:31:50 -08:00
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-n.ctx.Done():
|
|
|
|
return
|
|
|
|
case <-n.more:
|
|
|
|
}
|
|
|
|
alerts := n.nextBatch()
|
|
|
|
|
2016-11-23 08:03:22 -08:00
|
|
|
if !n.sendAll(alerts...) {
|
2015-12-10 07:31:50 -08:00
|
|
|
n.dropped.Add(float64(len(alerts)))
|
2013-07-30 08:18:07 -07:00
|
|
|
}
|
2015-12-10 07:31:50 -08:00
|
|
|
// If the queue still has items left, kick off the next iteration.
|
|
|
|
if n.queueLen() > 0 {
|
|
|
|
n.setMore()
|
|
|
|
}
|
2013-07-30 08:18:07 -07:00
|
|
|
}
|
2014-10-10 05:19:02 -07:00
|
|
|
}
|
|
|
|
|
2016-02-29 13:58:32 -08:00
|
|
|
// Send queues the given notification requests for processing.
|
2016-01-18 07:47:31 -08:00
|
|
|
// Panics if called on a handler that is not running.
|
2016-03-01 03:37:22 -08:00
|
|
|
func (n *Notifier) Send(alerts ...*model.Alert) {
|
2015-12-10 07:31:50 -08:00
|
|
|
n.mtx.Lock()
|
|
|
|
defer n.mtx.Unlock()
|
|
|
|
|
2016-09-27 05:34:56 -07:00
|
|
|
// Attach external labels before relabelling and sending.
|
|
|
|
for _, a := range alerts {
|
|
|
|
for ln, lv := range n.opts.ExternalLabels {
|
|
|
|
if _, ok := a.Labels[ln]; !ok {
|
|
|
|
a.Labels[ln] = lv
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-09 01:08:15 -07:00
|
|
|
alerts = n.relabelAlerts(alerts)
|
|
|
|
|
2015-12-10 07:31:50 -08:00
|
|
|
// Queue capacity should be significantly larger than a single alert
|
|
|
|
// batch could be.
|
|
|
|
if d := len(alerts) - n.opts.QueueCapacity; d > 0 {
|
|
|
|
alerts = alerts[d:]
|
|
|
|
|
|
|
|
log.Warnf("Alert batch larger than queue capacity, dropping %d alerts", d)
|
|
|
|
n.dropped.Add(float64(d))
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the queue is full, remove the oldest alerts in favor
|
|
|
|
// of newer ones.
|
|
|
|
if d := (len(n.queue) + len(alerts)) - n.opts.QueueCapacity; d > 0 {
|
|
|
|
n.queue = n.queue[d:]
|
|
|
|
|
|
|
|
log.Warnf("Alert notification queue full, dropping %d alerts", d)
|
|
|
|
n.dropped.Add(float64(d))
|
|
|
|
}
|
|
|
|
n.queue = append(n.queue, alerts...)
|
|
|
|
|
|
|
|
// Notify sending goroutine that there are alerts to be processed.
|
|
|
|
n.setMore()
|
|
|
|
}
|
|
|
|
|
2016-08-09 01:08:15 -07:00
|
|
|
func (n *Notifier) relabelAlerts(alerts []*model.Alert) []*model.Alert {
|
|
|
|
var relabeledAlerts []*model.Alert
|
|
|
|
for _, alert := range alerts {
|
2016-08-09 03:36:23 -07:00
|
|
|
labels := relabel.Process(alert.Labels, n.opts.RelabelConfigs...)
|
2016-08-09 01:08:15 -07:00
|
|
|
if labels != nil {
|
|
|
|
alert.Labels = labels
|
|
|
|
relabeledAlerts = append(relabeledAlerts, alert)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return relabeledAlerts
|
|
|
|
}
|
|
|
|
|
2015-12-10 07:31:50 -08:00
|
|
|
// setMore signals that the alert queue has items.
|
2016-03-01 03:37:22 -08:00
|
|
|
func (n *Notifier) setMore() {
|
2015-12-10 07:31:50 -08:00
|
|
|
// If we cannot send on the channel, it means the signal already exists
|
|
|
|
// and has not been consumed yet.
|
|
|
|
select {
|
|
|
|
case n.more <- struct{}{}:
|
|
|
|
default:
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-23 09:23:09 -08:00
|
|
|
// Alertmanagers returns a list Alertmanager URLs.
|
|
|
|
func (n *Notifier) Alertmanagers() []string {
|
|
|
|
n.mtx.RLock()
|
|
|
|
amSets := n.alertmanagers
|
|
|
|
n.mtx.RUnlock()
|
|
|
|
|
|
|
|
var res []string
|
|
|
|
|
|
|
|
for _, ams := range amSets {
|
|
|
|
ams.mtx.RLock()
|
|
|
|
for _, am := range ams.ams {
|
|
|
|
res = append(res, am.url())
|
|
|
|
}
|
|
|
|
ams.mtx.RUnlock()
|
|
|
|
}
|
|
|
|
|
|
|
|
return res
|
|
|
|
}
|
|
|
|
|
2016-11-24 06:17:50 -08:00
|
|
|
// sendAll sends the alerts to all configured Alertmanagers concurrently.
|
2016-11-24 23:47:04 -08:00
|
|
|
// It returns true if the alerts could be sent successfully to at least one Alertmanager.
|
2016-11-23 08:03:22 -08:00
|
|
|
func (n *Notifier) sendAll(alerts ...*model.Alert) bool {
|
2016-06-02 05:25:19 -07:00
|
|
|
begin := time.Now()
|
|
|
|
|
|
|
|
b, err := json.Marshal(alerts)
|
|
|
|
if err != nil {
|
|
|
|
log.Errorf("Encoding alerts failed: %s", err)
|
2016-11-23 08:03:22 -08:00
|
|
|
return false
|
2015-12-10 07:31:50 -08:00
|
|
|
}
|
2016-06-02 05:25:19 -07:00
|
|
|
|
2016-11-23 08:03:22 -08:00
|
|
|
n.mtx.RLock()
|
|
|
|
amSets := n.alertmanagers
|
|
|
|
n.mtx.RUnlock()
|
2015-12-10 07:31:50 -08:00
|
|
|
|
2016-06-02 05:25:19 -07:00
|
|
|
var (
|
2016-11-23 08:03:22 -08:00
|
|
|
wg sync.WaitGroup
|
|
|
|
numSuccess uint64
|
2016-06-02 05:25:19 -07:00
|
|
|
)
|
2016-11-23 08:03:22 -08:00
|
|
|
for _, ams := range amSets {
|
|
|
|
ams.mtx.RLock()
|
|
|
|
|
|
|
|
for _, am := range ams.ams {
|
|
|
|
wg.Add(1)
|
|
|
|
|
|
|
|
ctx, cancel := context.WithTimeout(n.ctx, ams.cfg.Timeout)
|
|
|
|
defer cancel()
|
|
|
|
|
|
|
|
go func(am alertmanager) {
|
|
|
|
u := am.url()
|
|
|
|
|
|
|
|
if err := am.send(ctx, ams.client, b); err != nil {
|
|
|
|
log.With("alertmanager", u).With("count", len(alerts)).Errorf("Error sending alerts: %s", err)
|
|
|
|
n.errors.WithLabelValues(u).Inc()
|
|
|
|
} else {
|
|
|
|
atomic.AddUint64(&numSuccess, 1)
|
|
|
|
}
|
|
|
|
n.latency.WithLabelValues(u).Observe(time.Since(begin).Seconds())
|
|
|
|
n.sent.WithLabelValues(u).Add(float64(len(alerts)))
|
2016-06-02 05:25:19 -07:00
|
|
|
|
2016-11-23 08:03:22 -08:00
|
|
|
wg.Done()
|
|
|
|
}(am)
|
|
|
|
}
|
|
|
|
ams.mtx.RUnlock()
|
2015-12-10 07:31:50 -08:00
|
|
|
}
|
2016-06-02 05:25:19 -07:00
|
|
|
wg.Wait()
|
|
|
|
|
2016-11-23 08:03:22 -08:00
|
|
|
return numSuccess > 0
|
2014-10-10 05:19:02 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// Stop shuts down the notification handler.
|
2016-03-01 03:37:22 -08:00
|
|
|
func (n *Notifier) Stop() {
|
2015-05-20 09:10:29 -07:00
|
|
|
log.Info("Stopping notification handler...")
|
2015-12-10 07:31:50 -08:00
|
|
|
n.cancel()
|
2013-07-30 08:18:07 -07:00
|
|
|
}
|
2014-06-18 10:43:15 -07:00
|
|
|
|
|
|
|
// Describe implements prometheus.Collector.
|
2016-03-01 03:37:22 -08:00
|
|
|
func (n *Notifier) Describe(ch chan<- *prometheus.Desc) {
|
2016-06-02 05:25:19 -07:00
|
|
|
n.latency.Describe(ch)
|
|
|
|
n.errors.Describe(ch)
|
|
|
|
n.sent.Describe(ch)
|
|
|
|
|
2015-12-10 07:31:50 -08:00
|
|
|
ch <- n.dropped.Desc()
|
|
|
|
ch <- n.queueLength.Desc()
|
|
|
|
ch <- n.queueCapacity.Desc()
|
2014-06-18 10:43:15 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// Collect implements prometheus.Collector.
|
2016-03-01 03:37:22 -08:00
|
|
|
func (n *Notifier) Collect(ch chan<- prometheus.Metric) {
|
2015-12-10 07:31:50 -08:00
|
|
|
n.queueLength.Set(float64(n.queueLen()))
|
|
|
|
|
2016-06-02 05:25:19 -07:00
|
|
|
n.latency.Collect(ch)
|
|
|
|
n.errors.Collect(ch)
|
|
|
|
n.sent.Collect(ch)
|
|
|
|
|
2015-12-10 07:31:50 -08:00
|
|
|
ch <- n.dropped
|
|
|
|
ch <- n.queueLength
|
|
|
|
ch <- n.queueCapacity
|
2013-07-30 08:18:07 -07:00
|
|
|
}
|
2016-11-23 08:03:22 -08:00
|
|
|
|
2016-11-24 06:17:50 -08:00
|
|
|
// alertmanager holds Alertmanager endpoint information.
|
2016-11-23 08:03:22 -08:00
|
|
|
type alertmanager struct {
|
|
|
|
plainURL string // test injection hook
|
|
|
|
labels model.LabelSet
|
|
|
|
}
|
|
|
|
|
|
|
|
const pathLabel = "__alerts_path__"
|
|
|
|
|
|
|
|
func (a alertmanager) url() string {
|
|
|
|
if a.plainURL != "" {
|
|
|
|
return a.plainURL
|
|
|
|
}
|
|
|
|
u := &url.URL{
|
|
|
|
Scheme: string(a.labels[model.SchemeLabel]),
|
|
|
|
Host: string(a.labels[model.AddressLabel]),
|
|
|
|
Path: string(a.labels[pathLabel]),
|
|
|
|
}
|
|
|
|
return u.String()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (a alertmanager) send(ctx context.Context, c *http.Client, b []byte) error {
|
|
|
|
resp, err := ctxhttp.Post(ctx, c, a.url(), contentTypeJSON, bytes.NewReader(b))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer resp.Body.Close()
|
|
|
|
|
|
|
|
// Any HTTP status 2xx is OK.
|
|
|
|
if resp.StatusCode/100 != 2 {
|
|
|
|
return fmt.Errorf("bad response status %v", resp.Status)
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// alertmanagerSet contains a set of Alertmanagers discovered via a group of service
|
|
|
|
// discovery definitions that have a common configuration on how alerts should be sent.
|
|
|
|
type alertmanagerSet struct {
|
|
|
|
ts *discovery.TargetSet
|
2016-11-24 06:17:50 -08:00
|
|
|
cfg *config.AlertmanagerConfig
|
2016-11-23 08:03:22 -08:00
|
|
|
client *http.Client
|
|
|
|
|
|
|
|
mtx sync.RWMutex
|
|
|
|
ams []alertmanager
|
|
|
|
}
|
|
|
|
|
2016-11-24 06:17:50 -08:00
|
|
|
func newAlertmanagerSet(cfg *config.AlertmanagerConfig) (*alertmanagerSet, error) {
|
2016-11-23 08:03:22 -08:00
|
|
|
client, err := retrieval.NewHTTPClient(cfg.HTTPClientConfig)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
s := &alertmanagerSet{
|
|
|
|
client: client,
|
|
|
|
cfg: cfg,
|
|
|
|
}
|
|
|
|
s.ts = discovery.NewTargetSet(s)
|
|
|
|
|
|
|
|
return s, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Sync extracts a deduplicated set of Alertmanager endpoints from a list
|
|
|
|
// of target groups definitions.
|
|
|
|
func (s *alertmanagerSet) Sync(tgs []*config.TargetGroup) {
|
|
|
|
all := []alertmanager{}
|
|
|
|
|
|
|
|
for _, tg := range tgs {
|
|
|
|
ams, err := alertmanagerFromGroup(tg, s.cfg)
|
|
|
|
if err != nil {
|
|
|
|
log.With("err", err).Error("generating discovered Alertmanagers failed")
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
all = append(all, ams...)
|
|
|
|
}
|
|
|
|
|
|
|
|
s.mtx.Lock()
|
|
|
|
defer s.mtx.Unlock()
|
|
|
|
// Set new Alertmanagers and deduplicate them along their unique URL.
|
|
|
|
s.ams = []alertmanager{}
|
|
|
|
seen := map[string]struct{}{}
|
|
|
|
|
|
|
|
for _, am := range all {
|
|
|
|
us := am.url()
|
|
|
|
if _, ok := seen[us]; ok {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
seen[us] = struct{}{}
|
|
|
|
s.ams = append(s.ams, am)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func postPath(pre string) string {
|
|
|
|
return path.Join("/", pre, alertPushEndpoint)
|
|
|
|
}
|
|
|
|
|
|
|
|
// alertmanagersFromGroup extracts a list of alertmanagers from a target group and an associcated
|
|
|
|
// AlertmanagerConfig.
|
2016-11-24 06:17:50 -08:00
|
|
|
func alertmanagerFromGroup(tg *config.TargetGroup, cfg *config.AlertmanagerConfig) ([]alertmanager, error) {
|
2016-11-23 08:03:22 -08:00
|
|
|
var res []alertmanager
|
|
|
|
|
|
|
|
for _, lset := range tg.Targets {
|
|
|
|
// Set configured scheme as the initial scheme label for overwrite.
|
|
|
|
lset[model.SchemeLabel] = model.LabelValue(cfg.Scheme)
|
|
|
|
lset[pathLabel] = model.LabelValue(postPath(cfg.PathPrefix))
|
|
|
|
|
|
|
|
// Combine target labels with target group labels.
|
|
|
|
for ln, lv := range tg.Labels {
|
|
|
|
if _, ok := lset[ln]; !ok {
|
|
|
|
lset[ln] = lv
|
|
|
|
}
|
|
|
|
}
|
|
|
|
lset := relabel.Process(lset, cfg.RelabelConfigs...)
|
|
|
|
if lset == nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// addPort checks whether we should add a default port to the address.
|
|
|
|
// If the address is not valid, we don't append a port either.
|
|
|
|
addPort := func(s string) bool {
|
|
|
|
// If we can split, a port exists and we don't have to add one.
|
|
|
|
if _, _, err := net.SplitHostPort(s); err == nil {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
// If adding a port makes it valid, the previous error
|
|
|
|
// was not due to an invalid address and we can append a port.
|
|
|
|
_, _, err := net.SplitHostPort(s + ":1234")
|
|
|
|
return err == nil
|
|
|
|
}
|
|
|
|
// If it's an address with no trailing port, infer it based on the used scheme.
|
|
|
|
if addr := string(lset[model.AddressLabel]); addPort(addr) {
|
|
|
|
// Addresses reaching this point are already wrapped in [] if necessary.
|
|
|
|
switch lset[model.SchemeLabel] {
|
|
|
|
case "http", "":
|
|
|
|
addr = addr + ":80"
|
|
|
|
case "https":
|
|
|
|
addr = addr + ":443"
|
|
|
|
default:
|
|
|
|
return nil, fmt.Errorf("invalid scheme: %q", cfg.Scheme)
|
|
|
|
}
|
|
|
|
lset[model.AddressLabel] = model.LabelValue(addr)
|
|
|
|
}
|
|
|
|
if err := config.CheckTargetAddress(lset[model.AddressLabel]); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Meta labels are deleted after relabelling. Other internal labels propagate to
|
|
|
|
// the target which decides whether they will be part of their label set.
|
|
|
|
for ln := range lset {
|
|
|
|
if strings.HasPrefix(string(ln), model.MetaLabelPrefix) {
|
|
|
|
delete(lset, ln)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
res = append(res, alertmanager{labels: lset})
|
|
|
|
}
|
|
|
|
return res, nil
|
|
|
|
}
|