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
80fdd830
Commit
80fdd830
authored
Oct 31, 2016
by
utkarshcmu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added override default recipient functionality
parent
658fc1a6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
0 deletions
+16
-0
pkg/services/alerting/notifiers/slack.go
+9
-0
public/app/features/alerting/partials/notification_edit.html
+7
-0
No files found.
pkg/services/alerting/notifiers/slack.go
View file @
80fdd830
...
...
@@ -22,9 +22,12 @@ func NewSlackNotifier(model *m.AlertNotification) (alerting.Notifier, error) {
return
nil
,
alerting
.
ValidationError
{
Reason
:
"Could not find url property in settings"
}
}
recipient
:=
model
.
Settings
.
Get
(
"recipient"
)
.
MustString
()
return
&
SlackNotifier
{
NotifierBase
:
NewNotifierBase
(
model
.
Id
,
model
.
IsDefault
,
model
.
Name
,
model
.
Type
,
model
.
Settings
),
Url
:
url
,
Recipient
:
recipient
,
log
:
log
.
New
(
"alerting.notifier.slack"
),
},
nil
}
...
...
@@ -32,6 +35,7 @@ func NewSlackNotifier(model *m.AlertNotification) (alerting.Notifier, error) {
type
SlackNotifier
struct
{
NotifierBase
Url
string
Recipient
string
log
log
.
Logger
}
...
...
@@ -87,6 +91,11 @@ func (this *SlackNotifier) Notify(evalContext *alerting.EvalContext) error {
},
}
//recipient override
if
this
.
Recipient
!=
""
{
body
[
"channel"
]
=
this
.
Recipient
}
data
,
_
:=
json
.
Marshal
(
&
body
)
cmd
:=
&
m
.
SendWebhookSync
{
Url
:
this
.
Url
,
Body
:
string
(
data
)}
...
...
public/app/features/alerting/partials/notification_edit.html
View file @
80fdd830
...
...
@@ -63,6 +63,13 @@
<span
class=
"gf-form-label width-6"
>
Url
</span>
<input
type=
"text"
required
class=
"gf-form-input max-width-30"
ng-model=
"ctrl.model.settings.url"
placeholder=
"Slack incoming webhook url"
></input>
</div>
<div
class=
"gf-form"
>
<span
class=
"gf-form-label width-6"
>
Recipient
</span>
<input
type=
"text"
class=
"gf-form-input max-width-30"
ng-model=
"ctrl.model.settings.recipient"
placeholder=
"Override default channel or user, use #channel-name or @username"
>
</input>
</div>
</div>
<div
class=
"gf-form-group section"
ng-if=
"ctrl.model.type === 'email'"
>
...
...
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