| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- package models
- import (
- "github.com/grafana/grafana/pkg/components/simplejson"
- "time"
- )
- type AlertRule struct {
- Id int64
- OrgId int64
- DashboardId int64
- PanelId int64
- Query string
- QueryRefId string
- WarnLevel string
- CritLevel string
- Interval string
- Title string
- Description string
- QueryRange string
- Aggregator string
- }
- type AlertRuleChange struct {
- OrgId int64
- AlertId int64
- Type string
- Created time.Time
- }
- func (cmd *SaveDashboardCommand) GetAlertModels() *[]AlertRule {
- alerts := make([]AlertRule, 0)
- for _, rowObj := range cmd.Dashboard.Get("rows").MustArray() {
- row := simplejson.NewFromAny(rowObj)
- for _, panelObj := range row.Get("panels").MustArray() {
- panel := simplejson.NewFromAny(panelObj)
- alerting := panel.Get("alerting")
- alert := AlertRule{
- DashboardId: cmd.Result.Id,
- OrgId: cmd.Result.OrgId,
- PanelId: panel.Get("id").MustInt64(),
- Id: alerting.Get("id").MustInt64(),
- QueryRefId: alerting.Get("queryRef").MustString(),
- WarnLevel: alerting.Get("warnLevel").MustString(),
- CritLevel: alerting.Get("critLevel").MustString(),
- Interval: alerting.Get("interval").MustString(),
- Title: alerting.Get("title").MustString(),
- Description: alerting.Get("description").MustString(),
- QueryRange: alerting.Get("queryRange").MustString(),
- Aggregator: alerting.Get("aggregator").MustString(),
- }
- for _, targetsObj := range panel.Get("targets").MustArray() {
- target := simplejson.NewFromAny(targetsObj)
- if target.Get("refId").MustString() == alert.QueryRefId {
- targetJson, err := target.MarshalJSON()
- if err == nil {
- alert.Query = string(targetJson)
- }
- continue
- }
- }
- if alert.Query != "" {
- alerts = append(alerts, alert)
- }
- }
- }
- return &alerts
- }
- // Commands
- type SaveAlertsCommand struct {
- DashboardId int64
- UserId int64
- OrgId int64
- Alerts *[]AlertRule
- }
- //Queries
- type GetAlertsQuery struct {
- OrgId int64
- Result []AlertRule
- }
- type GetAlertById struct {
- Id int64
- Result AlertRule
- }
|