| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- package alerting
- import (
- "fmt"
- "regexp"
- "strconv"
- "github.com/grafana/grafana/pkg/components/simplejson"
- m "github.com/grafana/grafana/pkg/models"
- )
- type AlertRule struct {
- Id int64
- OrgId int64
- DashboardId int64
- PanelId int64
- Frequency int64
- Name string
- Description string
- State m.AlertStateType
- Severity m.AlertSeverityType
- Conditions []AlertCondition
- Notifications []int64
- }
- type AlertValidationError struct {
- Reason string
- }
- func (e AlertValidationError) Error() string {
- return e.Reason
- }
- var (
- ValueFormatRegex = regexp.MustCompile("^\\d+")
- UnitFormatRegex = regexp.MustCompile("\\w{1}$")
- )
- var unitMultiplier = map[string]int{
- "s": 1,
- "m": 60,
- "h": 3600,
- }
- func getTimeDurationStringToSeconds(str string) int64 {
- multiplier := 1
- value, _ := strconv.Atoi(ValueFormatRegex.FindAllString(str, 1)[0])
- unit := UnitFormatRegex.FindAllString(str, 1)[0]
- if val, ok := unitMultiplier[unit]; ok {
- multiplier = val
- }
- return int64(value * multiplier)
- }
- func NewAlertRuleFromDBModel(ruleDef *m.Alert) (*AlertRule, error) {
- model := &AlertRule{}
- model.Id = ruleDef.Id
- model.OrgId = ruleDef.OrgId
- model.Name = ruleDef.Name
- model.Description = ruleDef.Description
- model.Frequency = ruleDef.Frequency
- model.Severity = ruleDef.Severity
- model.State = ruleDef.State
- for _, v := range ruleDef.Settings.Get("notifications").MustArray() {
- if id, ok := v.(int64); ok {
- model.Notifications = append(model.Notifications, int64(id))
- }
- }
- for index, condition := range ruleDef.Settings.Get("conditions").MustArray() {
- conditionModel := simplejson.NewFromAny(condition)
- switch conditionModel.Get("type").MustString() {
- case "query":
- queryCondition, err := NewQueryCondition(conditionModel, index)
- if err != nil {
- return nil, err
- }
- model.Conditions = append(model.Conditions, queryCondition)
- }
- }
- if len(model.Conditions) == 0 {
- return nil, fmt.Errorf("Alert is missing conditions")
- }
- return model, nil
- }
|