| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210 |
- package alerting
- import (
- "errors"
- "fmt"
- "github.com/grafana/grafana/pkg/bus"
- "github.com/grafana/grafana/pkg/components/simplejson"
- "github.com/grafana/grafana/pkg/log"
- m "github.com/grafana/grafana/pkg/models"
- )
- type DashAlertExtractor struct {
- Dash *m.Dashboard
- OrgId int64
- log log.Logger
- }
- func NewDashAlertExtractor(dash *m.Dashboard, orgId int64) *DashAlertExtractor {
- return &DashAlertExtractor{
- Dash: dash,
- OrgId: orgId,
- log: log.New("alerting.extractor"),
- }
- }
- func (e *DashAlertExtractor) lookupDatasourceId(dsName string) (*m.DataSource, error) {
- if dsName == "" {
- query := &m.GetDataSourcesQuery{OrgId: e.OrgId}
- if err := bus.Dispatch(query); err != nil {
- return nil, err
- } else {
- for _, ds := range query.Result {
- if ds.IsDefault {
- return ds, nil
- }
- }
- }
- } else {
- query := &m.GetDataSourceByNameQuery{Name: dsName, OrgId: e.OrgId}
- if err := bus.Dispatch(query); err != nil {
- return nil, err
- } else {
- return query.Result, nil
- }
- }
- return nil, errors.New("Could not find datasource id for " + dsName)
- }
- func findPanelQueryByRefId(panel *simplejson.Json, refId string) *simplejson.Json {
- for _, targetsObj := range panel.Get("targets").MustArray() {
- target := simplejson.NewFromAny(targetsObj)
- if target.Get("refId").MustString() == refId {
- return target
- }
- }
- return nil
- }
- func copyJson(in *simplejson.Json) (*simplejson.Json, error) {
- rawJson, err := in.MarshalJSON()
- if err != nil {
- return nil, err
- }
- return simplejson.NewJson(rawJson)
- }
- func (e *DashAlertExtractor) GetAlertFromPanels(jsonWithPanels *simplejson.Json) ([]*m.Alert, error) {
- alerts := make([]*m.Alert, 0)
- for _, panelObj := range jsonWithPanels.Get("panels").MustArray() {
- panel := simplejson.NewFromAny(panelObj)
- collapsedJson, collapsed := panel.CheckGet("collapsed")
- // check if the panel is collapsed
- if collapsed && collapsedJson.MustBool() {
- // extract alerts from sub panels for collapsed panels
- als, err := e.GetAlertFromPanels(panel)
- if err != nil {
- return nil, err
- }
- alerts = append(alerts, als...)
- continue
- }
- jsonAlert, hasAlert := panel.CheckGet("alert")
- if !hasAlert {
- continue
- }
- panelId, err := panel.Get("id").Int64()
- if err != nil {
- return nil, fmt.Errorf("panel id is required. err %v", err)
- }
- // backward compatibility check, can be removed later
- enabled, hasEnabled := jsonAlert.CheckGet("enabled")
- if hasEnabled && enabled.MustBool() == false {
- continue
- }
- frequency, err := getTimeDurationStringToSeconds(jsonAlert.Get("frequency").MustString())
- if err != nil {
- return nil, ValidationError{Reason: "Could not parse frequency"}
- }
- alert := &m.Alert{
- DashboardId: e.Dash.Id,
- OrgId: e.OrgId,
- PanelId: panelId,
- Id: jsonAlert.Get("id").MustInt64(),
- Name: jsonAlert.Get("name").MustString(),
- Handler: jsonAlert.Get("handler").MustInt64(),
- Message: jsonAlert.Get("message").MustString(),
- Frequency: frequency,
- }
- for _, condition := range jsonAlert.Get("conditions").MustArray() {
- jsonCondition := simplejson.NewFromAny(condition)
- jsonQuery := jsonCondition.Get("query")
- queryRefId := jsonQuery.Get("params").MustArray()[0].(string)
- panelQuery := findPanelQueryByRefId(panel, queryRefId)
- if panelQuery == nil {
- reason := fmt.Sprintf("Alert on PanelId: %v refers to query(%s) that cannot be found", alert.PanelId, queryRefId)
- return nil, ValidationError{Reason: reason}
- }
- dsName := ""
- if panelQuery.Get("datasource").MustString() != "" {
- dsName = panelQuery.Get("datasource").MustString()
- } else if panel.Get("datasource").MustString() != "" {
- dsName = panel.Get("datasource").MustString()
- }
- if datasource, err := e.lookupDatasourceId(dsName); err != nil {
- return nil, err
- } else {
- jsonQuery.SetPath([]string{"datasourceId"}, datasource.Id)
- }
- if interval, err := panel.Get("interval").String(); err == nil {
- panelQuery.Set("interval", interval)
- }
- jsonQuery.Set("model", panelQuery.Interface())
- }
- alert.Settings = jsonAlert
- // validate
- _, err = NewRuleFromDBAlert(alert)
- if err != nil {
- return nil, err
- }
- if alert.ValidToSave() {
- alerts = append(alerts, alert)
- } else {
- e.log.Debug("Invalid Alert Data. Dashboard, Org or Panel ID is not correct", "alertName", alert.Name, "panelId", alert.PanelId)
- return nil, m.ErrDashboardContainsInvalidAlertData
- }
- }
- return alerts, nil
- }
- func (e *DashAlertExtractor) GetAlerts() ([]*m.Alert, error) {
- e.log.Debug("GetAlerts")
- dashboardJson, err := copyJson(e.Dash.Data)
- if err != nil {
- return nil, err
- }
- alerts := make([]*m.Alert, 0)
- // We extract alerts from rows to be backwards compatible
- // with the old dashboard json model.
- rows := dashboardJson.Get("rows").MustArray()
- if len(rows) > 0 {
- for _, rowObj := range rows {
- row := simplejson.NewFromAny(rowObj)
- a, err := e.GetAlertFromPanels(row)
- if err != nil {
- return nil, err
- }
- alerts = append(alerts, a...)
- }
- } else {
- a, err := e.GetAlertFromPanels(dashboardJson)
- if err != nil {
- return nil, err
- }
- alerts = append(alerts, a...)
- }
- e.log.Debug("Extracted alerts from dashboard", "alertCount", len(alerts))
- return alerts, nil
- }
|