mirror of
https://github.com/grafana/grafana.git
synced 2024-11-27 11:20:27 -06:00
60 lines
1.2 KiB
Go
60 lines
1.2 KiB
Go
package alerting
|
|
|
|
import (
|
|
"fmt"
|
|
"time"
|
|
|
|
"github.com/grafana/grafana/pkg/log"
|
|
)
|
|
|
|
var (
|
|
descriptionFmt = "Actual value: %1.2f for %s. "
|
|
)
|
|
|
|
type DefaultEvalHandler struct {
|
|
log log.Logger
|
|
alertJobTimeout time.Duration
|
|
}
|
|
|
|
func NewEvalHandler() *DefaultEvalHandler {
|
|
return &DefaultEvalHandler{
|
|
log: log.New("alerting.evalHandler"),
|
|
alertJobTimeout: time.Second * 5,
|
|
}
|
|
}
|
|
|
|
func (e *DefaultEvalHandler) Eval(context *EvalContext) {
|
|
|
|
go e.eval(context)
|
|
|
|
select {
|
|
case <-time.After(e.alertJobTimeout):
|
|
context.Error = fmt.Errorf("Timeout")
|
|
context.EndTime = time.Now()
|
|
e.log.Debug("Job Execution timeout", "alertId", context.Rule.Id)
|
|
case <-context.DoneChan:
|
|
e.log.Debug("Job Execution done", "timeMs", context.GetDurationMs(), "alertId", context.Rule.Id, "firing", context.Firing)
|
|
}
|
|
|
|
}
|
|
|
|
func (e *DefaultEvalHandler) eval(context *EvalContext) {
|
|
|
|
for _, condition := range context.Rule.Conditions {
|
|
condition.Eval(context)
|
|
|
|
// break if condition could not be evaluated
|
|
if context.Error != nil {
|
|
break
|
|
}
|
|
|
|
// break if result has not triggered yet
|
|
if context.Firing == false {
|
|
break
|
|
}
|
|
}
|
|
|
|
context.EndTime = time.Now()
|
|
context.DoneChan <- true
|
|
}
|