Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nexpie-grafana-theme
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kornkitt Poolsup
nexpie-grafana-theme
Commits
c4dcf5a4
Commit
c4dcf5a4
authored
Oct 16, 2018
by
Dave Waters
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix gofmt, add test, correct noted concerns with default value
parent
18c73631
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
93 additions
and
89 deletions
+93
-89
pkg/api/dtos/alerting.go
+26
-26
pkg/models/alert_notifications.go
+25
-25
pkg/services/alerting/notifiers/base.go
+16
-17
pkg/services/alerting/notifiers/base_test.go
+5
-0
pkg/services/sqlstore/alert_notification.go
+9
-9
pkg/services/sqlstore/alert_notification_test.go
+11
-11
pkg/services/sqlstore/migrations/alert_mig.go
+1
-1
No files found.
pkg/api/dtos/alerting.go
View file @
c4dcf5a4
...
...
@@ -49,30 +49,30 @@ func formatShort(interval time.Duration) string {
func
NewAlertNotification
(
notification
*
models
.
AlertNotification
)
*
AlertNotification
{
return
&
AlertNotification
{
Id
:
notification
.
Id
,
Name
:
notification
.
Name
,
Type
:
notification
.
Type
,
IsDefault
:
notification
.
IsDefault
,
Created
:
notification
.
Created
,
Updated
:
notification
.
Updated
,
Frequency
:
formatShort
(
notification
.
Frequency
),
SendReminder
:
notification
.
SendReminder
,
DisableResolvedMessage
:
notification
.
DisableResolvedMessage
,
Settings
:
notification
.
Settings
,
Id
:
notification
.
Id
,
Name
:
notification
.
Name
,
Type
:
notification
.
Type
,
IsDefault
:
notification
.
IsDefault
,
Created
:
notification
.
Created
,
Updated
:
notification
.
Updated
,
Frequency
:
formatShort
(
notification
.
Frequency
),
SendReminder
:
notification
.
SendReminder
,
DisableResolvedMessage
:
notification
.
DisableResolvedMessage
,
Settings
:
notification
.
Settings
,
}
}
type
AlertNotification
struct
{
Id
int64
`json:"id"`
Name
string
`json:"name"`
Type
string
`json:"type"`
IsDefault
bool
`json:"isDefault"`
SendReminder
bool
`json:"sendReminder"`
DisableResolvedMessage
bool
`json:"disableResolvedMessage"`
Frequency
string
`json:"frequency"`
Created
time
.
Time
`json:"created"`
Updated
time
.
Time
`json:"updated"`
Settings
*
simplejson
.
Json
`json:"settings"`
Id
int64
`json:"id"`
Name
string
`json:"name"`
Type
string
`json:"type"`
IsDefault
bool
`json:"isDefault"`
SendReminder
bool
`json:"sendReminder"`
DisableResolvedMessage
bool
`json:"disableResolvedMessage"`
Frequency
string
`json:"frequency"`
Created
time
.
Time
`json:"created"`
Updated
time
.
Time
`json:"updated"`
Settings
*
simplejson
.
Json
`json:"settings"`
}
type
AlertTestCommand
struct
{
...
...
@@ -102,12 +102,12 @@ type EvalMatch struct {
}
type
NotificationTestCommand
struct
{
Name
string
`json:"name"`
Type
string
`json:"type"`
SendReminder
bool
`json:"sendReminder"`
DisableResolvedMessage
bool
`json:"disableResolvedMessage"`
Frequency
string
`json:"frequency"`
Settings
*
simplejson
.
Json
`json:"settings"`
Name
string
`json:"name"`
Type
string
`json:"type"`
SendReminder
bool
`json:"sendReminder"`
DisableResolvedMessage
bool
`json:"disableResolvedMessage"`
Frequency
string
`json:"frequency"`
Settings
*
simplejson
.
Json
`json:"settings"`
}
type
PauseAlertCommand
struct
{
...
...
pkg/models/alert_notifications.go
View file @
c4dcf5a4
...
...
@@ -23,41 +23,41 @@ var (
)
type
AlertNotification
struct
{
Id
int64
`json:"id"`
OrgId
int64
`json:"-"`
Name
string
`json:"name"`
Type
string
`json:"type"`
SendReminder
bool
`json:"sendReminder"`
DisableResolvedMessage
bool
`json:"disableResolvedMessage"`
Frequency
time
.
Duration
`json:"frequency"`
IsDefault
bool
`json:"isDefault"`
Settings
*
simplejson
.
Json
`json:"settings"`
Created
time
.
Time
`json:"created"`
Updated
time
.
Time
`json:"updated"`
Id
int64
`json:"id"`
OrgId
int64
`json:"-"`
Name
string
`json:"name"`
Type
string
`json:"type"`
SendReminder
bool
`json:"sendReminder"`
DisableResolvedMessage
bool
`json:"disableResolvedMessage"`
Frequency
time
.
Duration
`json:"frequency"`
IsDefault
bool
`json:"isDefault"`
Settings
*
simplejson
.
Json
`json:"settings"`
Created
time
.
Time
`json:"created"`
Updated
time
.
Time
`json:"updated"`
}
type
CreateAlertNotificationCommand
struct
{
Name
string
`json:"name" binding:"Required"`
Type
string
`json:"type" binding:"Required"`
SendReminder
bool
`json:"sendReminder"`
Name
string
`json:"name" binding:"Required"`
Type
string
`json:"type" binding:"Required"`
SendReminder
bool
`json:"sendReminder"`
DisableResolvedMessage
bool
`json:"disableResolvedMessage"`
Frequency
string
`json:"frequency"`
IsDefault
bool
`json:"isDefault"`
Settings
*
simplejson
.
Json
`json:"settings"`
Frequency
string
`json:"frequency"`
IsDefault
bool
`json:"isDefault"`
Settings
*
simplejson
.
Json
`json:"settings"`
OrgId
int64
`json:"-"`
Result
*
AlertNotification
}
type
UpdateAlertNotificationCommand
struct
{
Id
int64
`json:"id" binding:"Required"`
Name
string
`json:"name" binding:"Required"`
Type
string
`json:"type" binding:"Required"`
SendReminder
bool
`json:"sendReminder"`
DisableResolvedMessage
bool
`json:"disableResolvedMessage"`
Frequency
string
`json:"frequency"`
IsDefault
bool
`json:"isDefault"`
Settings
*
simplejson
.
Json
`json:"settings" binding:"Required"`
Id
int64
`json:"id" binding:"Required"`
Name
string
`json:"name" binding:"Required"`
Type
string
`json:"type" binding:"Required"`
SendReminder
bool
`json:"sendReminder"`
DisableResolvedMessage
bool
`json:"disableResolvedMessage"`
Frequency
string
`json:"frequency"`
IsDefault
bool
`json:"isDefault"`
Settings
*
simplejson
.
Json
`json:"settings" binding:"Required"`
OrgId
int64
`json:"-"`
Result
*
AlertNotification
...
...
pkg/services/alerting/notifiers/base.go
View file @
c4dcf5a4
...
...
@@ -6,7 +6,6 @@ import (
"github.com/grafana/grafana/pkg/log"
"github.com/grafana/grafana/pkg/models"
"github.com/grafana/grafana/pkg/services/alerting"
)
...
...
@@ -15,14 +14,14 @@ const (
)
type
NotifierBase
struct
{
Name
string
Type
string
Id
int64
IsDeault
bool
UploadImage
bool
SendReminder
bool
DisableResolvedMessage
bool
Frequency
time
.
Duration
Name
string
Type
string
Id
int64
IsDeault
bool
UploadImage
bool
SendReminder
bool
DisableResolvedMessage
bool
Frequency
time
.
Duration
log
log
.
Logger
}
...
...
@@ -35,15 +34,15 @@ func NewNotifierBase(model *models.AlertNotification) NotifierBase {
}
return
NotifierBase
{
Id
:
model
.
Id
,
Name
:
model
.
Name
,
IsDeault
:
model
.
IsDefault
,
Type
:
model
.
Type
,
UploadImage
:
uploadImage
,
SendReminder
:
model
.
SendReminder
,
Id
:
model
.
Id
,
Name
:
model
.
Name
,
IsDeault
:
model
.
IsDefault
,
Type
:
model
.
Type
,
UploadImage
:
uploadImage
,
SendReminder
:
model
.
SendReminder
,
DisableResolvedMessage
:
model
.
DisableResolvedMessage
,
Frequency
:
model
.
Frequency
,
log
:
log
.
New
(
"alerting.notifier."
+
model
.
Name
),
Frequency
:
model
.
Frequency
,
log
:
log
.
New
(
"alerting.notifier."
+
model
.
Name
),
}
}
...
...
pkg/services/alerting/notifiers/base_test.go
View file @
c4dcf5a4
...
...
@@ -179,5 +179,10 @@ func TestBaseNotifier(t *testing.T) {
base
:=
NewNotifierBase
(
model
)
So
(
base
.
UploadImage
,
ShouldBeTrue
)
})
Convey
(
"default value should be false for backwards compatibility"
,
func
()
{
base
:=
NewNotifierBase
(
model
)
So
(
base
.
DisableResolvedMessage
,
ShouldBeFalse
)
})
})
}
pkg/services/sqlstore/alert_notification.go
View file @
c4dcf5a4
...
...
@@ -168,16 +168,16 @@ func CreateAlertNotificationCommand(cmd *m.CreateAlertNotificationCommand) error
}
alertNotification
:=
&
m
.
AlertNotification
{
OrgId
:
cmd
.
OrgId
,
Name
:
cmd
.
Name
,
Type
:
cmd
.
Type
,
Settings
:
cmd
.
Settings
,
SendReminder
:
cmd
.
SendReminder
,
OrgId
:
cmd
.
OrgId
,
Name
:
cmd
.
Name
,
Type
:
cmd
.
Type
,
Settings
:
cmd
.
Settings
,
SendReminder
:
cmd
.
SendReminder
,
DisableResolvedMessage
:
cmd
.
DisableResolvedMessage
,
Frequency
:
frequency
,
Created
:
time
.
Now
(),
Updated
:
time
.
Now
(),
IsDefault
:
cmd
.
IsDefault
,
Frequency
:
frequency
,
Created
:
time
.
Now
(),
Updated
:
time
.
Now
(),
IsDefault
:
cmd
.
IsDefault
,
}
if
_
,
err
=
sess
.
MustCols
(
"send_reminder"
)
.
Insert
(
alertNotification
);
err
!=
nil
{
...
...
pkg/services/sqlstore/alert_notification_test.go
View file @
c4dcf5a4
...
...
@@ -227,14 +227,14 @@ func TestAlertNotificationSQLAccess(t *testing.T) {
Convey
(
"Can update alert notification"
,
func
()
{
newCmd
:=
&
models
.
UpdateAlertNotificationCommand
{
Name
:
"NewName"
,
Type
:
"webhook"
,
OrgId
:
cmd
.
Result
.
OrgId
,
SendReminder
:
true
,
Name
:
"NewName"
,
Type
:
"webhook"
,
OrgId
:
cmd
.
Result
.
OrgId
,
SendReminder
:
true
,
DisableResolvedMessage
:
true
,
Frequency
:
"60s"
,
Settings
:
simplejson
.
New
(),
Id
:
cmd
.
Result
.
Id
,
Frequency
:
"60s"
,
Settings
:
simplejson
.
New
(),
Id
:
cmd
.
Result
.
Id
,
}
err
:=
UpdateAlertNotification
(
newCmd
)
So
(
err
,
ShouldBeNil
)
...
...
@@ -259,10 +259,10 @@ func TestAlertNotificationSQLAccess(t *testing.T) {
})
Convey
(
"Can search using an array of ids"
,
func
()
{
cmd1
:=
m
odels
.
CreateAlertNotificationCommand
{
Name
:
"nagios"
,
Type
:
"webhook"
,
OrgId
:
1
,
SendReminder
:
true
,
DisableResolvedMessage
:
fals
e
,
Frequency
:
"10s"
,
Settings
:
simplejson
.
New
()}
cmd2
:=
m
odels
.
CreateAlertNotificationCommand
{
Name
:
"slack"
,
Type
:
"webhook"
,
OrgId
:
1
,
SendReminder
:
true
,
DisableResolvedMessage
:
fals
e
,
Frequency
:
"10s"
,
Settings
:
simplejson
.
New
()}
cmd3
:=
m
odels
.
CreateAlertNotificationCommand
{
Name
:
"ops2"
,
Type
:
"email"
,
OrgId
:
1
,
SendReminder
:
true
,
DisableResolvedMessage
:
fals
e
,
Frequency
:
"10s"
,
Settings
:
simplejson
.
New
()}
cmd4
:=
m
odels
.
CreateAlertNotificationCommand
{
IsDefault
:
true
,
Name
:
"default"
,
Type
:
"email"
,
OrgId
:
1
,
SendReminder
:
true
,
DisableResolvedMessage
:
fals
e
,
Frequency
:
"10s"
,
Settings
:
simplejson
.
New
()}
cmd1
:=
m
.
CreateAlertNotificationCommand
{
Name
:
"nagios"
,
Type
:
"webhook"
,
OrgId
:
1
,
SendReminder
:
tru
e
,
Frequency
:
"10s"
,
Settings
:
simplejson
.
New
()}
cmd2
:=
m
.
CreateAlertNotificationCommand
{
Name
:
"slack"
,
Type
:
"webhook"
,
OrgId
:
1
,
SendReminder
:
tru
e
,
Frequency
:
"10s"
,
Settings
:
simplejson
.
New
()}
cmd3
:=
m
.
CreateAlertNotificationCommand
{
Name
:
"ops2"
,
Type
:
"email"
,
OrgId
:
1
,
SendReminder
:
tru
e
,
Frequency
:
"10s"
,
Settings
:
simplejson
.
New
()}
cmd4
:=
m
.
CreateAlertNotificationCommand
{
IsDefault
:
true
,
Name
:
"default"
,
Type
:
"email"
,
OrgId
:
1
,
SendReminder
:
tru
e
,
Frequency
:
"10s"
,
Settings
:
simplejson
.
New
()}
otherOrg
:=
models
.
CreateAlertNotificationCommand
{
Name
:
"default"
,
Type
:
"email"
,
OrgId
:
2
,
SendReminder
:
true
,
DisableResolvedMessage
:
false
,
Frequency
:
"10s"
,
Settings
:
simplejson
.
New
()}
...
...
pkg/services/sqlstore/migrations/alert_mig.go
View file @
c4dcf5a4
...
...
@@ -72,7 +72,7 @@ func addAlertMigrations(mg *Migrator) {
Name
:
"send_reminder"
,
Type
:
DB_Bool
,
Nullable
:
true
,
Default
:
"0"
,
}))
mg
.
AddMigration
(
"Add column disable_resolved_message"
,
NewAddColumnMigration
(
alert_notification
,
&
Column
{
Name
:
"disable_resolved_message"
,
Type
:
DB_Bool
,
Nullable
:
false
,
Default
:
"
1
"
,
Name
:
"disable_resolved_message"
,
Type
:
DB_Bool
,
Nullable
:
false
,
Default
:
"
0
"
,
}))
mg
.
AddMigration
(
"add index alert_notification org_id & name"
,
NewAddIndexMigration
(
alert_notification
,
alert_notification
.
Indices
[
0
]))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment