2013-01-07 14:24:26 -08: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 (
|
2013-01-27 09:49:45 -08:00
|
|
|
"github.com/prometheus/prometheus/config"
|
2013-04-29 07:55:18 -07:00
|
|
|
"github.com/prometheus/prometheus/model"
|
2013-05-07 04:15:10 -07:00
|
|
|
"github.com/prometheus/prometheus/storage/metric"
|
2013-01-07 14:24:26 -08:00
|
|
|
"log"
|
2013-04-17 05:42:15 -07:00
|
|
|
"sync"
|
2013-01-07 14:24:26 -08:00
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Result struct {
|
|
|
|
Err error // TODO propagate errors from rule evaluation.
|
2013-04-29 07:55:18 -07:00
|
|
|
Samples model.Samples
|
2013-01-07 14:24:26 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
type RuleManager interface {
|
2013-06-13 07:10:05 -07:00
|
|
|
// Load and add rules from rule files specified in the configuration.
|
2013-04-30 11:20:14 -07:00
|
|
|
AddRulesFromConfig(config config.Config) error
|
2013-06-13 07:10:05 -07:00
|
|
|
// Start the rule manager's periodic rule evaluation.
|
2013-06-05 04:56:56 -07:00
|
|
|
Run()
|
2013-06-13 07:10:05 -07:00
|
|
|
// Stop the rule manager's rule evaluation cycles.
|
|
|
|
Stop()
|
|
|
|
// Return all rules.
|
2013-06-11 02:00:55 -07:00
|
|
|
Rules() []Rule
|
2013-06-13 07:10:05 -07:00
|
|
|
// Return all alerting rules.
|
|
|
|
AlertingRules() []*AlertingRule
|
2013-01-07 14:24:26 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
type ruleManager struct {
|
2013-06-05 04:56:56 -07:00
|
|
|
// Protects the rules list.
|
|
|
|
sync.Mutex
|
|
|
|
rules []Rule
|
|
|
|
|
2013-01-07 14:24:26 -08:00
|
|
|
results chan *Result
|
|
|
|
done chan bool
|
|
|
|
interval time.Duration
|
2013-05-07 04:15:10 -07:00
|
|
|
storage *metric.TieredStorage
|
2013-01-07 14:24:26 -08:00
|
|
|
}
|
|
|
|
|
2013-05-07 04:15:10 -07:00
|
|
|
func NewRuleManager(results chan *Result, interval time.Duration, storage *metric.TieredStorage) RuleManager {
|
2013-01-07 14:24:26 -08:00
|
|
|
manager := &ruleManager{
|
|
|
|
results: results,
|
2013-04-22 15:26:59 -07:00
|
|
|
rules: []Rule{},
|
|
|
|
done: make(chan bool),
|
2013-01-07 14:24:26 -08:00
|
|
|
interval: interval,
|
2013-05-07 04:15:10 -07:00
|
|
|
storage: storage,
|
2013-01-07 14:24:26 -08:00
|
|
|
}
|
|
|
|
return manager
|
|
|
|
}
|
|
|
|
|
2013-06-05 04:56:56 -07:00
|
|
|
func (m *ruleManager) Run() {
|
2013-05-23 12:29:27 -07:00
|
|
|
ticker := time.NewTicker(m.interval)
|
|
|
|
defer ticker.Stop()
|
2013-01-07 14:24:26 -08:00
|
|
|
|
|
|
|
for {
|
|
|
|
select {
|
2013-05-23 12:29:27 -07:00
|
|
|
case <-ticker.C:
|
|
|
|
start := time.Now()
|
2013-06-05 04:56:56 -07:00
|
|
|
m.runIteration(m.results)
|
2013-05-23 12:29:27 -07:00
|
|
|
evalDurations.Add(map[string]string{intervalKey: m.interval.String()}, float64(time.Since(start)/time.Millisecond))
|
2013-01-07 14:24:26 -08:00
|
|
|
case <-m.done:
|
|
|
|
log.Printf("RuleManager exiting...")
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *ruleManager) Stop() {
|
2013-05-23 12:29:27 -07:00
|
|
|
select {
|
|
|
|
case m.done <- true:
|
|
|
|
default:
|
|
|
|
}
|
2013-01-07 14:24:26 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
func (m *ruleManager) runIteration(results chan *Result) {
|
|
|
|
now := time.Now()
|
2013-04-17 05:42:15 -07:00
|
|
|
wg := sync.WaitGroup{}
|
2013-05-23 12:29:27 -07:00
|
|
|
|
2013-06-05 04:56:56 -07:00
|
|
|
m.Lock()
|
|
|
|
rules := make([]Rule, len(m.rules))
|
|
|
|
copy(rules, m.rules)
|
|
|
|
m.Unlock()
|
|
|
|
|
|
|
|
for _, rule := range rules {
|
2013-04-17 05:42:15 -07:00
|
|
|
wg.Add(1)
|
2013-05-23 12:29:27 -07:00
|
|
|
// BUG(julius): Look at fixing thundering herd.
|
2013-04-22 15:26:59 -07:00
|
|
|
go func(rule Rule) {
|
2013-05-23 12:29:27 -07:00
|
|
|
defer wg.Done()
|
2013-05-07 04:15:10 -07:00
|
|
|
vector, err := rule.Eval(now, m.storage)
|
2013-05-23 12:29:27 -07:00
|
|
|
samples := make(model.Samples, len(vector))
|
|
|
|
copy(samples, vector)
|
2013-01-07 14:24:26 -08:00
|
|
|
m.results <- &Result{
|
2013-04-29 07:55:18 -07:00
|
|
|
Samples: samples,
|
2013-04-09 04:47:20 -07:00
|
|
|
Err: err,
|
2013-01-07 14:24:26 -08:00
|
|
|
}
|
2013-04-17 05:42:15 -07:00
|
|
|
}(rule)
|
2013-01-07 14:24:26 -08:00
|
|
|
}
|
2013-05-23 12:29:27 -07:00
|
|
|
|
2013-04-17 05:42:15 -07:00
|
|
|
wg.Wait()
|
2013-01-07 14:24:26 -08:00
|
|
|
}
|
|
|
|
|
2013-04-30 11:20:14 -07:00
|
|
|
func (m *ruleManager) AddRulesFromConfig(config config.Config) error {
|
|
|
|
for _, ruleFile := range config.Global.RuleFile {
|
2013-01-10 16:17:37 -08:00
|
|
|
newRules, err := LoadRulesFromFile(ruleFile)
|
2013-01-07 14:24:26 -08:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2013-06-05 04:56:56 -07:00
|
|
|
m.Lock()
|
2013-01-07 14:24:26 -08:00
|
|
|
m.rules = append(m.rules, newRules...)
|
2013-06-05 04:56:56 -07:00
|
|
|
m.Unlock()
|
2013-01-07 14:24:26 -08:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2013-06-11 02:00:55 -07: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 07:10:05 -07: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
|
|
|
|
}
|