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"
|
2016-08-11 14:12:39 -05:00
|
|
|
"github.com/grafana/grafana/pkg/metrics"
|
2016-07-21 10:31:46 -05:00
|
|
|
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-17 15:13:27 -05:00
|
|
|
exeuctionError := " "
|
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)
|
2016-08-17 02:27:29 -05:00
|
|
|
ctx.Rule.State = m.AlertStateExeuctionError
|
|
|
|
exeuctionError = ctx.Error.Error()
|
2016-08-01 03:07:00 -05:00
|
|
|
} else if ctx.Firing {
|
2016-08-17 04:00:00 -05:00
|
|
|
ctx.Rule.State = m.AlertStateType(ctx.Rule.Severity)
|
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-11 14:12:39 -05:00
|
|
|
countSeverity(ctx.Rule.Severity)
|
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-08-17 02:27:29 -05:00
|
|
|
Error: exeuctionError,
|
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(),
|
|
|
|
}
|
2016-08-16 14:26:54 -05:00
|
|
|
|
2016-08-01 03:07:00 -05:00
|
|
|
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
|
|
|
}
|
2016-08-11 14:12:39 -05:00
|
|
|
|
|
|
|
func countSeverity(state m.AlertSeverityType) {
|
|
|
|
switch state {
|
|
|
|
case m.AlertSeverityOK:
|
|
|
|
metrics.M_Alerting_Result_Ok.Inc(1)
|
|
|
|
case m.AlertSeverityInfo:
|
|
|
|
metrics.M_Alerting_Result_Info.Inc(1)
|
|
|
|
case m.AlertSeverityWarning:
|
|
|
|
metrics.M_Alerting_Result_Warning.Inc(1)
|
|
|
|
case m.AlertSeverityCritical:
|
|
|
|
metrics.M_Alerting_Result_Critical.Inc(1)
|
|
|
|
}
|
|
|
|
}
|