2016-06-23 05:57:10 -05:00
|
|
|
package alerting
|
|
|
|
|
2016-07-21 10:31:46 -05:00
|
|
|
import (
|
2016-08-01 03:07:00 -05:00
|
|
|
"time"
|
|
|
|
|
2016-07-21 10:31:46 -05:00
|
|
|
"github.com/grafana/grafana/pkg/bus"
|
|
|
|
"github.com/grafana/grafana/pkg/log"
|
|
|
|
m "github.com/grafana/grafana/pkg/models"
|
2016-08-01 03:07:00 -05:00
|
|
|
"github.com/grafana/grafana/pkg/services/annotations"
|
2016-07-21 10:31:46 -05:00
|
|
|
)
|
2016-06-23 05:57:10 -05:00
|
|
|
|
|
|
|
type ResultHandler interface {
|
2016-08-01 03:07:00 -05:00
|
|
|
Handle(ctx *EvalContext)
|
2016-06-23 05:57:10 -05:00
|
|
|
}
|
|
|
|
|
2016-07-27 09:29:28 -05:00
|
|
|
type DefaultResultHandler struct {
|
2016-06-23 05:57:10 -05:00
|
|
|
notifier Notifier
|
|
|
|
log log.Logger
|
|
|
|
}
|
|
|
|
|
2016-07-27 09:29:28 -05:00
|
|
|
func NewResultHandler() *DefaultResultHandler {
|
|
|
|
return &DefaultResultHandler{
|
2016-07-26 05:29:52 -05:00
|
|
|
log: log.New("alerting.resultHandler"),
|
|
|
|
notifier: NewRootNotifier(),
|
2016-06-23 05:57:10 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-01 03:07:00 -05:00
|
|
|
func (handler *DefaultResultHandler) Handle(ctx *EvalContext) {
|
|
|
|
oldState := ctx.Rule.State
|
2016-07-22 06:14:09 -05:00
|
|
|
|
2016-08-01 03:07:00 -05:00
|
|
|
if ctx.Error != nil {
|
|
|
|
handler.log.Error("Alert Rule Result Error", "ruleId", ctx.Rule.Id, "error", ctx.Error)
|
|
|
|
ctx.Rule.State = m.AlertStatePending
|
|
|
|
} else if ctx.Firing {
|
|
|
|
ctx.Rule.State = m.AlertStateFiring
|
2016-07-22 06:14:09 -05:00
|
|
|
} else {
|
2016-08-01 03:07:00 -05:00
|
|
|
ctx.Rule.State = m.AlertStateOK
|
2016-07-21 10:31:46 -05:00
|
|
|
}
|
|
|
|
|
2016-08-01 03:07:00 -05:00
|
|
|
if ctx.Rule.State != oldState {
|
|
|
|
handler.log.Info("New state change", "alertId", ctx.Rule.Id, "newState", ctx.Rule.State, "oldState", oldState)
|
2016-07-21 10:31:46 -05:00
|
|
|
|
2016-07-22 06:14:09 -05:00
|
|
|
cmd := &m.SetAlertStateCommand{
|
2016-08-01 03:07:00 -05:00
|
|
|
AlertId: ctx.Rule.Id,
|
|
|
|
OrgId: ctx.Rule.OrgId,
|
|
|
|
State: ctx.Rule.State,
|
2016-07-21 10:31:46 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if err := bus.Dispatch(cmd); err != nil {
|
|
|
|
handler.log.Error("Failed to save state", "error", err)
|
|
|
|
}
|
|
|
|
|
2016-08-01 03:07:00 -05:00
|
|
|
// save annotation
|
|
|
|
item := annotations.Item{
|
|
|
|
OrgId: ctx.Rule.OrgId,
|
|
|
|
Type: annotations.AlertType,
|
|
|
|
AlertId: ctx.Rule.Id,
|
|
|
|
Title: ctx.Rule.Name,
|
|
|
|
Text: ctx.GetStateText(),
|
|
|
|
NewState: string(ctx.Rule.State),
|
|
|
|
PrevState: string(oldState),
|
|
|
|
Timestamp: time.Now(),
|
|
|
|
}
|
|
|
|
annotationRepo := annotations.GetRepository()
|
|
|
|
if err := annotationRepo.Save(&item); err != nil {
|
|
|
|
handler.log.Error("Failed to save annotation for new alert state", "error", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
handler.notifier.Notify(ctx)
|
2016-07-21 10:31:46 -05:00
|
|
|
}
|
2016-06-23 05:57:10 -05:00
|
|
|
}
|