// 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" "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 } return Load(string(content)) } // Config is the top-level configuration for Alertmanager's config files. type Config struct { Routes []*Route `yaml:"routes,omitempty"` InhibitRules []*InhibitRule `yaml:"inhibit_rules,omitempty"` NotificationConfigs []*NotificationConfig `yaml:"notification_configs,omitempty"` // 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("", 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 } names := map[string]struct{}{} for _, nc := range c.NotificationConfigs { if _, ok := names[nc.Name]; ok { return fmt.Errorf("notification config name %q is not unique", nc.Name) } names[nc.Name] = struct{}{} } return checkOverflow(c.XXX, "config") } // A Route is a node that contains definitions of how to handle alerts. type Route struct { SendTo string `yaml:"send_to,omitempty"` GroupBy []model.LabelName `yaml:"group_by,omitempty"` GroupWait *model.Duration `yaml:"group_wait,omitempty"` RepeatInterval *model.Duration `yaml:"repeat_interval,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"` // 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") } type InhibitRule struct { SourceMatch map[string]string `yaml:"source_match"` SourceMatchRE map[string]Regexp `yaml:"source_match_re"` TargetMatch map[string]string `yaml:"target_match"` TargetMatchRE map[string]Regexp `yaml:"target_match_re"` 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") } // Notification configuration definition. type NotificationConfig struct { // Name of this NotificationConfig. Referenced from AggregationRule. Name string `yaml:"name"` // Notify when resolved. SendResolved bool `yaml:"send_resolved"` PagerdutyConfigs []*PagerdutyConfig `yaml:"pagerduty_configs"` EmailConfigs []*EmailConfig `yaml:"email_configs"` PushoverConfigs []*PushoverConfig `yaml:"pushover_configs"` HipchatConfigs []*HipchatConfig `yaml:"hipchat_configs"` SlackConfigs []*SlackConfig `yaml:"slack_config"` FlowdockConfigs []*FlowdockConfig `yaml:"flowdock_config"` WebhookConfigs []*WebhookConfig `yaml:"webhook_config"` // Catches all undefined fields and must be empty after parsing. XXX map[string]interface{} `yaml:",inline"` } // UnmarshalYAML implements the yaml.Unmarshaler interface. func (c *NotificationConfig) UnmarshalYAML(unmarshal func(interface{}) error) error { type plain NotificationConfig if err := unmarshal((*plain)(c)); err != nil { return err } if c.Name == "" { return fmt.Errorf("missing name in notification config") } return checkOverflow(c.XXX, "notification config") } // Regexp encapsulates a regexp.Regexp and makes it YAML marshallable. type Regexp struct { 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 } 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 }