5652bde447
* Use secrets service in pluginproxy
* Use secrets service in pluginxontext
* Use secrets service in pluginsettings
* Use secrets service in provisioning
* Use secrets service in authinfoservice
* Use secrets service in api
* Use secrets service in sqlstore
* Use secrets service in dashboardshapshots
* Use secrets service in tsdb
* Use secrets service in datasources
* Use secrets service in alerting
* Use secrets service in ngalert
* Break cyclic dependancy
* Refactor service
* Break cyclic dependancy
* Add FakeSecretsStore
* Setup Secrets Service in sqlstore
* Fix
* Continue secrets service refactoring
* Fix cyclic dependancy in sqlstore tests
* Fix secrets service references
* Fix linter errors
* Add fake secrets service for tests
* Refactor SetupTestSecretsService
* Update setting up secret service in tests
* Fix missing secrets service in multiorg_alertmanager_test
* Use fake db in tests and sort imports
* Use fake db in datasources tests
* Fix more tests
* Fix linter issues
* Attempt to fix plugin proxy tests
* Pass secrets service to getPluginProxiedRequest in pluginproxy tests
* Fix pluginproxy tests
* Revert using secrets service in alerting and provisioning
* Update decryptFn in alerting migration
* Rename defaultProvider to currentProvider
* Use fake secrets service in alert channels tests
* Refactor secrets service test helper
* Update setting up secrets service in tests
* Revert alerting changes in api
* Add comments
* Remove secrets service from background services
* Convert global encryption functions into vars
* Revert "Convert global encryption functions into vars"
This reverts commit 498eb19859.
* Add feature toggle for envelope encryption
* Rename toggle
Co-authored-by: Emil Tullstedt <emil.tullstedt@grafana.com>
Co-authored-by: Joan López de la Franca Beltran <joanjan14@gmail.com>
113 lines
3.2 KiB
Go
113 lines
3.2 KiB
Go
package channels
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"fmt"
|
|
"net/url"
|
|
"strings"
|
|
|
|
"github.com/grafana/grafana/pkg/infra/log"
|
|
"github.com/grafana/grafana/pkg/models"
|
|
"github.com/prometheus/alertmanager/template"
|
|
"github.com/prometheus/alertmanager/types"
|
|
)
|
|
|
|
// GetDecryptedValueFn is a function that returns the decrypted value of
|
|
// the given key. If the key is not present, then it returns the fallback value.
|
|
type GetDecryptedValueFn func(ctx context.Context, sjd map[string][]byte, key string, fallback string) string
|
|
|
|
// NewAlertmanagerNotifier returns a new Alertmanager notifier.
|
|
func NewAlertmanagerNotifier(model *NotificationChannelConfig, _ *template.Template, fn GetDecryptedValueFn) (*AlertmanagerNotifier, error) {
|
|
if model.Settings == nil {
|
|
return nil, receiverInitError{Reason: "no settings supplied"}
|
|
}
|
|
|
|
urlStr := model.Settings.Get("url").MustString()
|
|
if urlStr == "" {
|
|
return nil, receiverInitError{Reason: "could not find url property in settings", Cfg: *model}
|
|
}
|
|
|
|
var urls []*url.URL
|
|
for _, uS := range strings.Split(urlStr, ",") {
|
|
uS = strings.TrimSpace(uS)
|
|
if uS == "" {
|
|
continue
|
|
}
|
|
|
|
uS = strings.TrimSuffix(uS, "/") + "/api/v1/alerts"
|
|
u, err := url.Parse(uS)
|
|
if err != nil {
|
|
return nil, receiverInitError{Reason: "invalid url property in settings", Cfg: *model, Err: err}
|
|
}
|
|
|
|
urls = append(urls, u)
|
|
}
|
|
basicAuthUser := model.Settings.Get("basicAuthUser").MustString()
|
|
basicAuthPassword := fn(context.Background(), model.SecureSettings, "basicAuthPassword", model.Settings.Get("basicAuthPassword").MustString())
|
|
|
|
return &AlertmanagerNotifier{
|
|
Base: NewBase(&models.AlertNotification{
|
|
Uid: model.UID,
|
|
Name: model.Name,
|
|
DisableResolveMessage: model.DisableResolveMessage,
|
|
Settings: model.Settings,
|
|
}),
|
|
urls: urls,
|
|
basicAuthUser: basicAuthUser,
|
|
basicAuthPassword: basicAuthPassword,
|
|
logger: log.New("alerting.notifier.prometheus-alertmanager"),
|
|
}, nil
|
|
}
|
|
|
|
// AlertmanagerNotifier sends alert notifications to the alert manager
|
|
type AlertmanagerNotifier struct {
|
|
*Base
|
|
|
|
urls []*url.URL
|
|
basicAuthUser string
|
|
basicAuthPassword string
|
|
logger log.Logger
|
|
}
|
|
|
|
// Notify sends alert notifications to Alertmanager.
|
|
func (n *AlertmanagerNotifier) Notify(ctx context.Context, as ...*types.Alert) (bool, error) {
|
|
n.logger.Debug("Sending Alertmanager alert", "alertmanager", n.Name)
|
|
if len(as) == 0 {
|
|
return true, nil
|
|
}
|
|
|
|
body, err := json.Marshal(as)
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
|
|
var (
|
|
lastErr error
|
|
numErrs int
|
|
)
|
|
for _, u := range n.urls {
|
|
if _, err := sendHTTPRequest(ctx, u, httpCfg{
|
|
user: n.basicAuthUser,
|
|
password: n.basicAuthPassword,
|
|
body: body,
|
|
}, n.logger); err != nil {
|
|
n.logger.Warn("Failed to send to Alertmanager", "error", err, "alertmanager", n.Name, "url", u.String())
|
|
lastErr = err
|
|
numErrs++
|
|
}
|
|
}
|
|
|
|
if numErrs == len(n.urls) {
|
|
// All attempts to send alerts have failed
|
|
n.logger.Warn("All attempts to send to Alertmanager failed", "alertmanager", n.Name)
|
|
return false, fmt.Errorf("failed to send alert to Alertmanager: %w", lastErr)
|
|
}
|
|
|
|
return true, nil
|
|
}
|
|
|
|
func (n *AlertmanagerNotifier) SendResolved() bool {
|
|
return !n.GetDisableResolveMessage()
|
|
}
|