prometheus/rules/manager.go

111 lines
2.6 KiB
Go
Raw Normal View History

// 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 (
"github.com/prometheus/prometheus/config"
"github.com/prometheus/prometheus/model"
2013-05-07 11:15:10 +00:00
"github.com/prometheus/prometheus/storage/metric"
"log"
2013-04-17 12:42:15 +00:00
"sync"
"time"
)
type Result struct {
Err error // TODO propagate errors from rule evaluation.
Samples model.Samples
}
type RuleManager interface {
AddRulesFromConfig(config config.Config) error
}
type ruleManager struct {
rules []Rule
results chan *Result
done chan bool
interval time.Duration
2013-05-07 11:15:10 +00:00
storage *metric.TieredStorage
}
2013-05-07 11:15:10 +00:00
func NewRuleManager(results chan *Result, interval time.Duration, storage *metric.TieredStorage) RuleManager {
manager := &ruleManager{
results: results,
rules: []Rule{},
done: make(chan bool),
interval: interval,
2013-05-07 11:15:10 +00:00
storage: storage,
}
// BUG(julius): Extract this so that the caller manages concurrency.
go manager.run(results)
return manager
}
func (m *ruleManager) run(results chan *Result) {
ticker := time.NewTicker(m.interval)
defer ticker.Stop()
for {
select {
case <-ticker.C:
start := time.Now()
m.runIteration(results)
evalDurations.Add(map[string]string{intervalKey: m.interval.String()}, float64(time.Since(start)/time.Millisecond))
case <-m.done:
log.Printf("RuleManager exiting...")
break
}
}
}
func (m *ruleManager) Stop() {
select {
case m.done <- true:
default:
}
}
func (m *ruleManager) runIteration(results chan *Result) {
now := time.Now()
2013-04-17 12:42:15 +00:00
wg := sync.WaitGroup{}
for _, rule := range m.rules {
2013-04-17 12:42:15 +00:00
wg.Add(1)
// BUG(julius): Look at fixing thundering herd.
go func(rule Rule) {
defer wg.Done()
2013-05-07 11:15:10 +00:00
vector, err := rule.Eval(now, m.storage)
samples := make(model.Samples, len(vector))
copy(samples, vector)
m.results <- &Result{
Samples: samples,
Err: err,
}
2013-04-17 12:42:15 +00:00
}(rule)
}
2013-04-17 12:42:15 +00:00
wg.Wait()
}
func (m *ruleManager) AddRulesFromConfig(config config.Config) error {
for _, ruleFile := range config.Global.RuleFile {
newRules, err := LoadRulesFromFile(ruleFile)
if err != nil {
return err
}
m.rules = append(m.rules, newRules...)
}
return nil
}