grafana/pkg/models/alert_notifications.go

153 lines
4.8 KiB
Go
Raw Normal View History

2016-06-13 09:39:00 -05:00
package models
import (
2018-05-25 13:14:33 -05:00
"errors"
2016-06-13 09:39:00 -05:00
"time"
"github.com/grafana/grafana/pkg/components/simplejson"
)
2018-05-25 13:14:33 -05:00
var (
2018-12-14 03:53:50 -06:00
ErrNotificationFrequencyNotFound = errors.New("Notification frequency not specified")
ErrAlertNotificationStateNotFound = errors.New("alert notification state not found")
ErrAlertNotificationStateVersionConflict = errors.New("alert notification state update version conflict")
ErrAlertNotificationStateAlreadyExist = errors.New("alert notification state already exists")
2018-12-14 03:53:50 -06:00
ErrAlertNotificationFailedGenerateUniqueUid = errors.New("Failed to generate unique alert notification uid")
)
type AlertNotificationStateType string
var (
AlertNotificationStatePending = AlertNotificationStateType("pending")
AlertNotificationStateCompleted = AlertNotificationStateType("completed")
AlertNotificationStateUnknown = AlertNotificationStateType("unknown")
2018-05-25 13:14:33 -05:00
)
2016-06-13 09:39:00 -05:00
type AlertNotification struct {
2018-10-17 03:41:18 -05:00
Id int64 `json:"id"`
2018-12-14 03:53:50 -06:00
Uid string `json:"-"`
2018-10-17 03:41:18 -05:00
OrgId int64 `json:"-"`
Name string `json:"name"`
Type string `json:"type"`
SendReminder bool `json:"sendReminder"`
DisableResolveMessage bool `json:"disableResolveMessage"`
Frequency time.Duration `json:"frequency"`
IsDefault bool `json:"isDefault"`
Settings *simplejson.Json `json:"settings"`
Created time.Time `json:"created"`
Updated time.Time `json:"updated"`
2016-06-13 09:39:00 -05:00
}
type CreateAlertNotificationCommand struct {
Uid string `json:"uid"`
2018-10-17 03:41:18 -05:00
Name string `json:"name" binding:"Required"`
Type string `json:"type" binding:"Required"`
SendReminder bool `json:"sendReminder"`
DisableResolveMessage bool `json:"disableResolveMessage"`
Frequency string `json:"frequency"`
IsDefault bool `json:"isDefault"`
Settings *simplejson.Json `json:"settings"`
2016-06-13 09:39:00 -05:00
OrgId int64 `json:"-"`
2016-06-13 09:39:00 -05:00
Result *AlertNotification
}
type UpdateAlertNotificationCommand struct {
2018-10-17 03:41:18 -05:00
Id int64 `json:"id" binding:"Required"`
Uid string `json:"uid"`
2018-10-17 03:41:18 -05:00
Name string `json:"name" binding:"Required"`
Type string `json:"type" binding:"Required"`
SendReminder bool `json:"sendReminder"`
DisableResolveMessage bool `json:"disableResolveMessage"`
Frequency string `json:"frequency"`
IsDefault bool `json:"isDefault"`
Settings *simplejson.Json `json:"settings" binding:"Required"`
2016-06-13 09:39:00 -05:00
OrgId int64 `json:"-"`
2016-06-13 09:39:00 -05:00
Result *AlertNotification
}
2018-12-14 03:53:50 -06:00
type UpdateAlertNotificationWithUidCommand struct {
Uid string `json:"-"`
NewUid string `json:"uid"`
Name string `json:"name" binding:"Required"`
Type string `json:"type" binding:"Required"`
SendReminder bool `json:"sendReminder"`
DisableResolveMessage bool `json:"disableResolveMessage"`
Frequency string `json:"frequency"`
IsDefault bool `json:"isDefault"`
Settings *simplejson.Json `json:"settings" binding:"Required"`
2018-12-14 03:53:50 -06:00
OrgId int64
Result *AlertNotification
}
type DeleteAlertNotificationCommand struct {
Id int64
OrgId int64
}
2018-12-14 03:53:50 -06:00
type DeleteAlertNotificationWithUidCommand struct {
Uid string
OrgId int64
}
type GetAlertNotificationsQuery struct {
Name string
Id int64
OrgId int64
Result *AlertNotification
}
2018-12-14 03:53:50 -06:00
type GetAlertNotificationsWithUidQuery struct {
Uid string
OrgId int64
Result *AlertNotification
}
type GetAlertNotificationsWithUidToSendQuery struct {
Uids []string
OrgId int64
2016-06-13 09:39:00 -05:00
Result []*AlertNotification
}
type GetAllAlertNotificationsQuery struct {
OrgId int64
Result []*AlertNotification
}
2018-09-26 10:26:02 -05:00
type AlertNotificationState struct {
Id int64
OrgId int64
AlertId int64
NotifierId int64
State AlertNotificationStateType
Version int64
UpdatedAt int64
AlertRuleStateUpdatedVersion int64
}
type SetAlertNotificationStateToPendingCommand struct {
Id int64
AlertRuleStateUpdatedVersion int64
Version int64
ResultVersion int64
}
type SetAlertNotificationStateToCompleteCommand struct {
Id int64
Version int64
}
type GetOrCreateNotificationStateQuery struct {
OrgId int64
AlertId int64
NotifierId int64
2018-09-26 10:26:02 -05:00
Result *AlertNotificationState
}