Merge pull request #7249 from grafana/alerting_test_alertrule

Enable error and no_data overrides when testing alerting.
This commit is contained in:
Carl Bergquist
2017-01-13 15:18:02 +01:00
committed by GitHub
6 changed files with 109 additions and 126 deletions
+1 -1
View File
@@ -120,10 +120,10 @@ func AlertTest(c *middleware.Context, dto dtos.AlertTestCommand) Response {
}
res := backendCmd.Result
dtoRes := &dtos.AlertTestResult{
Firing: res.Firing,
ConditionEvals: res.ConditionEvals,
State: res.Rule.State,
}
if res.Error != nil {
+1
View File
@@ -37,6 +37,7 @@ type AlertTestCommand struct {
type AlertTestResult struct {
Firing bool `json:"firing"`
State m.AlertStateType `json:"state"`
ConditionEvals string `json:"conditionEvals"`
TimeMs string `json:"timeMs"`
Error string `json:"error,omitempty"`