feat(alerting): adds alert state go ui

This commit is contained in:
bergquist
2016-04-28 08:53:34 +02:00
parent 1631673485
commit 3ecc13506c
4 changed files with 8 additions and 1 deletions
+1
View File
@@ -62,6 +62,7 @@ func GetAlerts(c *middleware.Context) Response {
Description: alert.Description,
QueryRange: alert.QueryRange,
Aggregator: alert.Aggregator,
State: alert.State,
})
}
+1
View File
@@ -13,6 +13,7 @@ type AlertRuleDTO struct {
Description string `json:"description"`
QueryRange string `json:"queryRange"`
Aggregator string `json:"aggregator"`
State string `json:"state"`
DashbboardUri string `json:"dashboardUri"`
}