mirror of
https://github.com/grafana/grafana.git
synced 2024-12-02 13:39:19 -06:00
74 lines
2.1 KiB
Go
74 lines
2.1 KiB
Go
package alerting
|
|
|
|
import (
|
|
"github.com/grafana/grafana/pkg/bus"
|
|
"github.com/grafana/grafana/pkg/components/simplejson"
|
|
m "github.com/grafana/grafana/pkg/models"
|
|
)
|
|
|
|
func ParseAlertsFromDashboard(cmd *m.SaveDashboardCommand) []m.AlertRule {
|
|
alerts := make([]m.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 := m.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").MustInt64(),
|
|
CritLevel: alerting.Get("critLevel").MustInt64(),
|
|
WarnOperator: alerting.Get("warnOperator").MustString(),
|
|
CritOperator: alerting.Get("critOperator").MustString(),
|
|
Frequency: alerting.Get("frequency").MustInt64(),
|
|
Title: alerting.Get("title").MustString(),
|
|
Description: alerting.Get("description").MustString(),
|
|
QueryRange: alerting.Get("queryRange").MustInt(),
|
|
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 panel.Get("datasource").MustString() == "" {
|
|
query := &m.GetDataSourcesQuery{OrgId: cmd.OrgId}
|
|
if err := bus.Dispatch(query); err == nil {
|
|
for _, ds := range query.Result {
|
|
if ds.IsDefault {
|
|
alert.DatasourceId = ds.Id
|
|
}
|
|
}
|
|
}
|
|
} else {
|
|
query := &m.GetDataSourceByNameQuery{
|
|
Name: panel.Get("datasource").MustString(),
|
|
OrgId: cmd.OrgId,
|
|
}
|
|
bus.Dispatch(query)
|
|
alert.DatasourceId = query.Result.Id
|
|
}
|
|
|
|
if alert.Query != "" {
|
|
alerts = append(alerts, alert)
|
|
}
|
|
}
|
|
}
|
|
|
|
return alerts
|
|
}
|