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
f21c976b
Unverified
Commit
f21c976b
authored
Mar 06, 2019
by
Marcus Efraimsson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix discord notifier so it doesn't crash when there are no image generated
parent
8ba4eb47
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
43 additions
and
38 deletions
+43
-38
pkg/services/alerting/notifiers/discord.go
+43
-38
No files found.
pkg/services/alerting/notifiers/discord.go
View file @
f21c976b
...
...
@@ -111,63 +111,68 @@ func (this *DiscordNotifier) Notify(evalContext *alerting.EvalContext) error {
json
,
_
:=
bodyJSON
.
MarshalJSON
()
content_type
:=
"application/json"
var
body
[]
byte
if
embeddedImage
{
var
b
bytes
.
Buffer
w
:=
multipart
.
NewWriter
(
&
b
)
f
,
err
:=
os
.
Open
(
evalContext
.
ImageOnDiskPath
)
cmd
:=
&
m
.
SendWebhookSync
{
Url
:
this
.
WebhookURL
,
HttpMethod
:
"POST"
,
ContentType
:
"application/json"
,
}
if
!
embeddedImage
{
cmd
.
Body
=
string
(
json
)
}
else
{
err
:=
this
.
embedImage
(
cmd
,
evalContext
.
ImageOnDiskPath
,
json
)
if
err
!=
nil
{
this
.
log
.
Error
(
"
Can't open graph file
"
,
err
)
this
.
log
.
Error
(
"
failed to embed image"
,
"error
"
,
err
)
return
err
}
}
defer
f
.
Close
()
fw
,
err
:=
w
.
CreateFormField
(
"payload_json"
)
if
err
!=
nil
{
return
err
}
if
err
:=
bus
.
DispatchCtx
(
evalContext
.
Ctx
,
cmd
);
err
!=
nil
{
this
.
log
.
Error
(
"Failed to send notification to Discord"
,
"error"
,
err
)
return
err
}
if
_
,
err
=
fw
.
Write
([]
byte
(
string
(
json
)));
err
!=
nil
{
return
err
}
return
nil
}
fw
,
err
=
w
.
CreateFormFile
(
"file"
,
"graph.png"
)
if
err
!=
nil
{
return
err
func
(
this
*
DiscordNotifier
)
embedImage
(
cmd
*
m
.
SendWebhookSync
,
imagePath
string
,
existingJSONBody
[]
byte
)
error
{
f
,
err
:=
os
.
Open
(
imagePath
)
defer
f
.
Close
()
if
err
!=
nil
{
if
os
.
IsNotExist
(
err
)
{
cmd
.
Body
=
string
(
existingJSONBody
)
return
nil
}
if
_
,
err
=
io
.
Copy
(
fw
,
f
);
err
!=
nil
{
if
!
os
.
IsNotExist
(
err
)
{
return
err
}
}
w
.
Close
()
var
b
bytes
.
Buffer
w
:=
multipart
.
NewWriter
(
&
b
)
body
=
b
.
Bytes
()
content_type
=
w
.
FormDataContentType
()
fw
,
err
:=
w
.
CreateFormField
(
"payload_json"
)
if
err
!=
nil
{
return
err
}
}
else
{
body
=
json
if
_
,
err
=
fw
.
Write
([]
byte
(
string
(
existingJSONBody
)));
err
!=
nil
{
return
err
}
cmd
:=
&
m
.
SendWebhookSync
{
Url
:
this
.
WebhookURL
,
Body
:
string
(
body
),
HttpMethod
:
"POST"
,
ContentType
:
content_type
,
fw
,
err
=
w
.
CreateFormFile
(
"file"
,
"graph.png"
)
if
err
!=
nil
{
return
err
}
if
err
:=
bus
.
DispatchCtx
(
evalContext
.
Ctx
,
cmd
);
err
!=
nil
{
this
.
log
.
Error
(
"Failed to send notification to Discord"
,
"error"
,
err
)
if
_
,
err
=
io
.
Copy
(
fw
,
f
);
err
!=
nil
{
return
err
}
w
.
Close
()
cmd
.
Body
=
string
(
b
.
Bytes
())
cmd
.
ContentType
=
w
.
FormDataContentType
()
return
nil
}
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