alertmanager/config/config.go

347 lines
9.8 KiB
Go
Raw Normal View History

// 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.
package config
import (
"fmt"
"io/ioutil"
2015-10-09 09:06:04 +00:00
"path/filepath"
"regexp"
"strings"
"github.com/prometheus/common/model"
"gopkg.in/yaml.v2"
)
// Load parses the YAML input s into a Config.
func Load(s string) (*Config, error) {
cfg := &Config{}
err := yaml.Unmarshal([]byte(s), cfg)
if err != nil {
return nil, err
}
cfg.original = s
return cfg, nil
}
// LoadFile parses the given YAML file into a Config.
func LoadFile(filename string) (*Config, error) {
content, err := ioutil.ReadFile(filename)
if err != nil {
return nil, err
}
2015-10-09 09:06:04 +00:00
cfg, err := Load(string(content))
if err != nil {
return nil, err
}
resolveFilepaths(filepath.Dir(filename), cfg)
return cfg, nil
}
// resolveFilepaths joins all relative paths in a configuration
// with a given base directory.
func resolveFilepaths(baseDir string, cfg *Config) {
join := func(fp string) string {
if len(fp) > 0 && !filepath.IsAbs(fp) {
fp = filepath.Join(baseDir, fp)
}
return fp
}
for i, tf := range cfg.Templates {
cfg.Templates[i] = join(tf)
}
}
// Config is the top-level configuration for Alertmanager's config files.
type Config struct {
2015-11-10 13:08:20 +00:00
Global *GlobalConfig `yaml:"global,omitempty"`
Route *Route `yaml:"route,omitempty"`
InhibitRules []*InhibitRule `yaml:"inhibit_rules,omitempty"`
Receivers []*Receiver `yaml:"receivers,omitempty"`
Templates []string `yaml:"templates"`
// Catches all undefined fields and must be empty after parsing.
XXX map[string]interface{} `yaml:",inline"`
// original is the input from which the config was parsed.
original string
}
func checkOverflow(m map[string]interface{}, ctx string) error {
if len(m) > 0 {
var keys []string
for k := range m {
keys = append(keys, k)
}
return fmt.Errorf("unknown fields in %s: %s", ctx, strings.Join(keys, ", "))
}
return nil
}
func (c Config) String() string {
if c.original != "" {
return c.original
}
b, err := yaml.Marshal(c)
if err != nil {
return fmt.Sprintf("<error creating config string: %s>", err)
}
return string(b)
}
// UnmarshalYAML implements the yaml.Unmarshaler interface.
func (c *Config) UnmarshalYAML(unmarshal func(interface{}) error) error {
// We want to set c to the defaults and then overwrite it with the input.
// To make unmarshal fill the plain data struct rather than calling UnmarshalYAML
// again, we have to hide it using a type indirection.
type plain Config
if err := unmarshal((*plain)(c)); err != nil {
return err
}
// If a global block was open but empty the default global config is overwritten.
// We have to restore it here.
if c.Global == nil {
c.Global = &GlobalConfig{}
*c.Global = DefaultGlobalConfig
}
names := map[string]struct{}{}
2015-11-10 13:08:20 +00:00
for _, rcv := range c.Receivers {
if _, ok := names[rcv.Name]; ok {
return fmt.Errorf("notification config name %q is not unique", rcv.Name)
}
2015-11-10 13:08:20 +00:00
for _, ec := range rcv.EmailConfigs {
if ec.Smarthost == "" {
if c.Global.Smarthost == "" {
return fmt.Errorf("no global mail smarthost set")
}
ec.Smarthost = c.Global.Smarthost
}
2015-10-19 14:52:54 +00:00
if ec.Sender == "" {
if c.Global.SMTPSender == "" {
return fmt.Errorf("no global SMTP sender set")
}
ec.Sender = c.Global.SMTPSender
}
}
2015-11-10 13:08:20 +00:00
for _, sc := range rcv.SlackConfigs {
if sc.URL == "" {
if c.Global.SlackURL == "" {
return fmt.Errorf("no global Slack URL set")
}
sc.URL = c.Global.SlackURL
}
}
2015-11-10 13:08:20 +00:00
for _, pdc := range rcv.PagerdutyConfigs {
2015-10-19 09:44:46 +00:00
if pdc.URL == "" {
if c.Global.PagerdutyURL == "" {
2015-10-19 09:44:46 +00:00
return fmt.Errorf("no global PagerDuty URL set")
}
pdc.URL = c.Global.PagerdutyURL
2015-10-19 09:44:46 +00:00
}
}
2015-11-10 13:08:20 +00:00
names[rcv.Name] = struct{}{}
}
return checkOverflow(c.XXX, "config")
}
2015-11-12 11:57:20 +00:00
// DefaultGlobalConfig provides global default values.
2015-10-19 09:44:46 +00:00
var DefaultGlobalConfig = GlobalConfig{
PagerdutyURL: "https://events.pagerduty.com/generic/2010-04-15/create_event.json",
}
2015-11-12 11:57:20 +00:00
// GlobalConfig defines configuration parameters that are valid globally
// unless overwritten.
type GlobalConfig struct {
2015-10-19 14:52:54 +00:00
SMTPSender string `yaml:"smtp_sender"`
2015-10-19 09:44:46 +00:00
Smarthost string `yaml:"smarthost"`
SlackURL string `yaml:"slack_url"`
PagerdutyURL string `yaml:"pagerduty_url"`
}
2015-11-12 11:57:20 +00:00
// UnmarshalYAML implements the yaml.Unmarshaler interface.
func (c *GlobalConfig) UnmarshalYAML(unmarshal func(interface{}) error) error {
*c = DefaultGlobalConfig
type plain GlobalConfig
return unmarshal((*plain)(c))
}
// A Route is a node that contains definitions of how to handle alerts.
type Route struct {
2015-11-10 12:47:04 +00:00
Receiver string `yaml:"receiver,omitempty"`
GroupBy []model.LabelName `yaml:"group_by,omitempty"`
Match map[string]string `yaml:"match,omitempty"`
MatchRE map[string]Regexp `yaml:"match_re,omitempty"`
Continue bool `yaml:"continue,omitempty"`
Routes []*Route `yaml:"routes,omitempty"`
GroupWait *model.Duration `yaml:"group_wait,omitempty"`
GroupInterval *model.Duration `yaml:"group_interval,omitempty"`
RepeatInterval *model.Duration `yaml:"repeat_interval"`
SendResolved *bool `yaml:"send_resolved"`
// Catches all undefined fields and must be empty after parsing.
XXX map[string]interface{} `yaml:",inline"`
}
// UnmarshalYAML implements the yaml.Unmarshaler interface.
func (r *Route) UnmarshalYAML(unmarshal func(interface{}) error) error {
type plain Route
if err := unmarshal((*plain)(r)); err != nil {
return err
}
for k := range r.Match {
if !model.LabelNameRE.MatchString(k) {
return fmt.Errorf("invalid label name %q", k)
}
}
for k := range r.MatchRE {
if !model.LabelNameRE.MatchString(k) {
return fmt.Errorf("invalid label name %q", k)
}
}
groupBy := map[model.LabelName]struct{}{}
for _, ln := range r.GroupBy {
if _, ok := groupBy[ln]; ok {
return fmt.Errorf("duplicated label %q in group_by", ln)
}
groupBy[ln] = struct{}{}
}
return checkOverflow(r.XXX, "route")
}
2015-11-12 11:57:20 +00:00
// InhibitRule defines an inhibition rule that mutes alerts that match the
// target labels if an alert matching the source labels exists.
// Both alerts have to have a set of labels being equal.
type InhibitRule struct {
2015-11-12 11:57:20 +00:00
// SourceMatch defines a set of labels that have to equal the given
// value for source alerts.
SourceMatch map[string]string `yaml:"source_match"`
// SourceMatchRE defines pairs like SourceMatch but does regular expression
// matching.
SourceMatchRE map[string]Regexp `yaml:"source_match_re"`
2015-11-12 11:57:20 +00:00
// TargetMatch defines a set of labels that have to equal the given
// value for target alerts.
TargetMatch map[string]string `yaml:"target_match"`
// TargetMatchRE defines pairs like TargetMatch but does regular expression
// matching.
TargetMatchRE map[string]Regexp `yaml:"target_match_re"`
2015-11-12 11:57:20 +00:00
// A set of labels that must be equal between the source and target alert
// for them to be a match.
Equal model.LabelNames `yaml:"equal"`
// Catches all undefined fields and must be empty after parsing.
XXX map[string]interface{} `yaml:",inline"`
}
// UnmarshalYAML implements the yaml.Unmarshaler interface.
func (r *InhibitRule) UnmarshalYAML(unmarshal func(interface{}) error) error {
type plain InhibitRule
if err := unmarshal((*plain)(r)); err != nil {
return err
}
for k := range r.SourceMatch {
if !model.LabelNameRE.MatchString(k) {
return fmt.Errorf("invalid label name %q", k)
}
}
for k := range r.SourceMatchRE {
if !model.LabelNameRE.MatchString(k) {
return fmt.Errorf("invalid label name %q", k)
}
}
for k := range r.TargetMatch {
if !model.LabelNameRE.MatchString(k) {
return fmt.Errorf("invalid label name %q", k)
}
}
for k := range r.TargetMatchRE {
if !model.LabelNameRE.MatchString(k) {
return fmt.Errorf("invalid label name %q", k)
}
}
return checkOverflow(r.XXX, "inhibit rule")
}
2015-11-12 11:57:20 +00:00
// Receiver configuration provides configuration on how to contact a receiver.
2015-11-10 13:08:20 +00:00
type Receiver struct {
2015-11-12 11:57:20 +00:00
// A unique identifier for this receiver.
Name string `yaml:"name"`
PagerdutyConfigs []*PagerdutyConfig `yaml:"pagerduty_configs"`
EmailConfigs []*EmailConfig `yaml:"email_configs"`
PushoverConfigs []*PushoverConfig `yaml:"pushover_configs"`
HipchatConfigs []*HipchatConfig `yaml:"hipchat_configs"`
2015-09-29 18:45:23 +00:00
SlackConfigs []*SlackConfig `yaml:"slack_configs"`
FlowdockConfigs []*FlowdockConfig `yaml:"flowdock_configs"`
WebhookConfigs []*WebhookConfig `yaml:"webhook_configs"`
// Catches all undefined fields and must be empty after parsing.
XXX map[string]interface{} `yaml:",inline"`
}
// UnmarshalYAML implements the yaml.Unmarshaler interface.
2015-11-10 13:08:20 +00:00
func (c *Receiver) UnmarshalYAML(unmarshal func(interface{}) error) error {
type plain Receiver
if err := unmarshal((*plain)(c)); err != nil {
return err
}
if c.Name == "" {
2015-11-10 13:08:20 +00:00
return fmt.Errorf("missing name in receiver")
}
2015-11-10 13:08:20 +00:00
return checkOverflow(c.XXX, "receiver config")
}
// Regexp encapsulates a regexp.Regexp and makes it YAML marshallable.
type Regexp struct {
2015-11-05 09:25:25 +00:00
*regexp.Regexp
}
// UnmarshalYAML implements the yaml.Unmarshaler interface.
func (re *Regexp) UnmarshalYAML(unmarshal func(interface{}) error) error {
var s string
if err := unmarshal(&s); err != nil {
return err
}
regex, err := regexp.Compile(s)
if err != nil {
return err
}
2015-11-05 09:25:25 +00:00
re.Regexp = regex
return nil
}
// MarshalYAML implements the yaml.Marshaler interface.
func (re *Regexp) MarshalYAML() (interface{}, error) {
if re != nil {
return re.String(), nil
}
return nil, nil
}