2013-01-07 22:24:26 +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 rules
|
|
|
|
|
|
|
|
import (
|
|
|
|
"log"
|
2013-04-17 12:42:15 +00:00
|
|
|
"sync"
|
2013-01-07 22:24:26 +00:00
|
|
|
"time"
|
|
|
|
|
2013-06-25 12:02:27 +00:00
|
|
|
"github.com/prometheus/client_golang/extraction"
|
|
|
|
clientmodel "github.com/prometheus/client_golang/model"
|
|
|
|
|
|
|
|
"github.com/prometheus/prometheus/config"
|
|
|
|
"github.com/prometheus/prometheus/storage/metric"
|
|
|
|
)
|
2013-01-07 22:24:26 +00:00
|
|
|
|
|
|
|
type RuleManager interface {
|
2013-06-13 14:10:05 +00:00
|
|
|
// Load and add rules from rule files specified in the configuration.
|
2013-04-30 18:20:14 +00:00
|
|
|
AddRulesFromConfig(config config.Config) error
|
2013-06-13 14:10:05 +00:00
|
|
|
// Start the rule manager's periodic rule evaluation.
|
2013-06-05 11:56:56 +00:00
|
|
|
Run()
|
2013-06-13 14:10:05 +00:00
|
|
|
// Stop the rule manager's rule evaluation cycles.
|
|
|
|
Stop()
|
|
|
|
// Return all rules.
|
2013-06-11 09:00:55 +00:00
|
|
|
Rules() []Rule
|
2013-06-13 14:10:05 +00:00
|
|
|
// Return all alerting rules.
|
|
|
|
AlertingRules() []*AlertingRule
|
2013-01-07 22:24:26 +00:00
|
|
|
}
|
|
|
|
|
2013-07-30 15:18:07 +00:00
|
|
|
// A request for sending an alert notification to the alert manager. This needs
|
|
|
|
// to be defined in this package to prevent a circular import between
|
|
|
|
// rules<->notification.
|
|
|
|
type NotificationReq struct {
|
|
|
|
Rule *AlertingRule
|
|
|
|
ActiveAlert Alert
|
|
|
|
}
|
|
|
|
|
|
|
|
type NotificationReqs []*NotificationReq
|
|
|
|
|
2013-01-07 22:24:26 +00:00
|
|
|
type ruleManager struct {
|
2013-06-05 11:56:56 +00:00
|
|
|
// Protects the rules list.
|
|
|
|
sync.Mutex
|
|
|
|
rules []Rule
|
|
|
|
|
2013-07-30 15:18:07 +00:00
|
|
|
results chan<- *extraction.Result
|
|
|
|
notifications chan<- NotificationReqs
|
|
|
|
done chan bool
|
|
|
|
interval time.Duration
|
|
|
|
storage *metric.TieredStorage
|
2013-01-07 22:24:26 +00:00
|
|
|
}
|
|
|
|
|
2013-07-30 15:18:07 +00:00
|
|
|
func NewRuleManager(results chan<- *extraction.Result, notifications chan<- NotificationReqs, interval time.Duration, storage *metric.TieredStorage) RuleManager {
|
2013-01-07 22:24:26 +00:00
|
|
|
manager := &ruleManager{
|
2013-07-30 15:18:07 +00:00
|
|
|
results: results,
|
|
|
|
notifications: notifications,
|
|
|
|
rules: []Rule{},
|
|
|
|
done: make(chan bool),
|
|
|
|
interval: interval,
|
|
|
|
storage: storage,
|
2013-01-07 22:24:26 +00:00
|
|
|
}
|
|
|
|
return manager
|
|
|
|
}
|
|
|
|
|
2013-06-05 11:56:56 +00:00
|
|
|
func (m *ruleManager) Run() {
|
2013-05-23 19:29:27 +00:00
|
|
|
ticker := time.NewTicker(m.interval)
|
|
|
|
defer ticker.Stop()
|
2013-01-07 22:24:26 +00:00
|
|
|
|
|
|
|
for {
|
|
|
|
select {
|
2013-05-23 19:29:27 +00:00
|
|
|
case <-ticker.C:
|
|
|
|
start := time.Now()
|
2013-06-05 11:56:56 +00:00
|
|
|
m.runIteration(m.results)
|
2013-05-23 19:29:27 +00:00
|
|
|
evalDurations.Add(map[string]string{intervalKey: m.interval.String()}, float64(time.Since(start)/time.Millisecond))
|
2013-01-07 22:24:26 +00:00
|
|
|
case <-m.done:
|
|
|
|
log.Printf("RuleManager exiting...")
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *ruleManager) Stop() {
|
2013-05-23 19:29:27 +00:00
|
|
|
select {
|
|
|
|
case m.done <- true:
|
|
|
|
default:
|
|
|
|
}
|
2013-01-07 22:24:26 +00:00
|
|
|
}
|
|
|
|
|
2013-07-30 15:18:07 +00:00
|
|
|
func (m *ruleManager) queueAlertNotifications(rule *AlertingRule) {
|
|
|
|
activeAlerts := rule.ActiveAlerts()
|
|
|
|
if len(activeAlerts) == 0 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
notifications := make(NotificationReqs, 0, len(activeAlerts))
|
|
|
|
for _, aa := range activeAlerts {
|
|
|
|
if aa.State != FIRING {
|
|
|
|
// BUG: In the future, make AlertManager support pending alerts?
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
notifications = append(notifications, &NotificationReq{
|
|
|
|
Rule: rule,
|
|
|
|
ActiveAlert: aa,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
m.notifications <- notifications
|
|
|
|
}
|
|
|
|
|
2013-06-25 12:02:27 +00:00
|
|
|
func (m *ruleManager) runIteration(results chan<- *extraction.Result) {
|
2013-01-07 22:24:26 +00:00
|
|
|
now := time.Now()
|
2013-04-17 12:42:15 +00:00
|
|
|
wg := sync.WaitGroup{}
|
2013-05-23 19:29:27 +00:00
|
|
|
|
2013-06-05 11:56:56 +00:00
|
|
|
m.Lock()
|
|
|
|
rules := make([]Rule, len(m.rules))
|
|
|
|
copy(rules, m.rules)
|
|
|
|
m.Unlock()
|
|
|
|
|
|
|
|
for _, rule := range rules {
|
2013-04-17 12:42:15 +00:00
|
|
|
wg.Add(1)
|
2013-05-23 19:29:27 +00:00
|
|
|
// BUG(julius): Look at fixing thundering herd.
|
2013-04-22 22:26:59 +00:00
|
|
|
go func(rule Rule) {
|
2013-05-23 19:29:27 +00:00
|
|
|
defer wg.Done()
|
2013-05-07 11:15:10 +00:00
|
|
|
vector, err := rule.Eval(now, m.storage)
|
2013-06-25 12:02:27 +00:00
|
|
|
samples := make(clientmodel.Samples, len(vector))
|
2013-05-23 19:29:27 +00:00
|
|
|
copy(samples, vector)
|
2013-06-25 12:02:27 +00:00
|
|
|
m.results <- &extraction.Result{
|
2013-04-29 14:55:18 +00:00
|
|
|
Samples: samples,
|
2013-04-09 11:47:20 +00:00
|
|
|
Err: err,
|
2013-01-07 22:24:26 +00:00
|
|
|
}
|
2013-07-30 15:18:07 +00:00
|
|
|
|
|
|
|
if alertingRule, ok := rule.(*AlertingRule); ok {
|
|
|
|
m.queueAlertNotifications(alertingRule)
|
|
|
|
}
|
2013-04-17 12:42:15 +00:00
|
|
|
}(rule)
|
2013-01-07 22:24:26 +00:00
|
|
|
}
|
2013-05-23 19:29:27 +00:00
|
|
|
|
2013-04-17 12:42:15 +00:00
|
|
|
wg.Wait()
|
2013-01-07 22:24:26 +00:00
|
|
|
}
|
|
|
|
|
2013-04-30 18:20:14 +00:00
|
|
|
func (m *ruleManager) AddRulesFromConfig(config config.Config) error {
|
|
|
|
for _, ruleFile := range config.Global.RuleFile {
|
2013-01-11 00:17:37 +00:00
|
|
|
newRules, err := LoadRulesFromFile(ruleFile)
|
2013-01-07 22:24:26 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2013-06-05 11:56:56 +00:00
|
|
|
m.Lock()
|
2013-01-07 22:24:26 +00:00
|
|
|
m.rules = append(m.rules, newRules...)
|
2013-06-05 11:56:56 +00:00
|
|
|
m.Unlock()
|
2013-01-07 22:24:26 +00:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2013-06-11 09:00:55 +00:00
|
|
|
|
|
|
|
func (m *ruleManager) Rules() []Rule {
|
|
|
|
m.Lock()
|
|
|
|
defer m.Unlock()
|
|
|
|
|
|
|
|
rules := make([]Rule, len(m.rules))
|
|
|
|
copy(rules, m.rules)
|
|
|
|
return rules
|
|
|
|
}
|
2013-06-13 14:10:05 +00:00
|
|
|
|
|
|
|
func (m *ruleManager) AlertingRules() []*AlertingRule {
|
|
|
|
m.Lock()
|
|
|
|
defer m.Unlock()
|
|
|
|
|
|
|
|
alerts := []*AlertingRule{}
|
|
|
|
for _, rule := range m.rules {
|
|
|
|
if alertingRule, ok := rule.(*AlertingRule); ok {
|
|
|
|
alerts = append(alerts, alertingRule)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return alerts
|
|
|
|
}
|