Fix rule manager shutdown.

This commit is contained in:
Bjoern Rabenstein 2015-01-29 15:05:10 +01:00
parent 3948e2a7f8
commit 26e22e6ad6
1 changed files with 15 additions and 11 deletions

View File

@ -128,24 +128,28 @@ func NewRuleManager(o *RuleManagerOptions) RuleManager {
} }
func (m *ruleManager) Run() { func (m *ruleManager) Run() {
defer glog.Info("Rule manager stopped.")
ticker := time.NewTicker(m.interval) ticker := time.NewTicker(m.interval)
defer ticker.Stop() defer ticker.Stop()
for { for {
// TODO(beorn): This has the same problem as the scraper had // The outer select clause makes sure that m.done is looked at
// before. If rule evaluation takes longer than the interval, // first. Otherwise, if m.runIteration takes longer than
// there is a 50% chance per iteration that - after stopping the // m.interval, there is only a 50% chance that m.done will be
// ruleManager - a new evaluation will be started rather than // looked at before the next m.runIteration call happens.
// the ruleManager actually stopped. We need a similar
// contraption here as in the scraper.
select { select {
case <-ticker.C:
start := time.Now()
m.runIteration(m.results)
iterationDuration.Observe(float64(time.Since(start) / time.Millisecond))
case <-m.done: case <-m.done:
glog.Info("Rule manager stopped.")
return return
default:
select {
case <-ticker.C:
start := time.Now()
m.runIteration(m.results)
iterationDuration.Observe(float64(time.Since(start) / time.Millisecond))
case <-m.done:
return
}
} }
} }
} }