mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-23 14:54:05 +00:00
fix: remove service name/type from discord notifier
This commit is contained in:
parent
0d328e7c8e
commit
c28710cdc6
1 changed files with 17 additions and 36 deletions
|
@ -33,23 +33,11 @@ class Discord extends NotificationProvider {
|
||||||
return okMsg;
|
return okMsg;
|
||||||
}
|
}
|
||||||
|
|
||||||
// If heartbeatJSON is not null, we go into the normal alerting loop.
|
const embedFields = [
|
||||||
if (heartbeatJSON["status"] === DOWN) {
|
|
||||||
let discorddowndata = {
|
|
||||||
username: discordDisplayName,
|
|
||||||
embeds: [{
|
|
||||||
title: "❌ Your service " + monitorJSON["name"] + " went down. ❌",
|
|
||||||
color: 16711680,
|
|
||||||
timestamp: heartbeatJSON["time"],
|
|
||||||
fields: [
|
|
||||||
{
|
{
|
||||||
name: "Service Name",
|
name: "Service Name",
|
||||||
value: monitorJSON["name"],
|
value: monitorJSON["name"],
|
||||||
},
|
},
|
||||||
{
|
|
||||||
name: monitorJSON["type"] === "push" ? "Service Type" : "Service URL",
|
|
||||||
value: this.extractAddress(monitorJSON),
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: `Time (${heartbeatJSON["timezone"]})`,
|
name: `Time (${heartbeatJSON["timezone"]})`,
|
||||||
value: heartbeatJSON["localDateTime"],
|
value: heartbeatJSON["localDateTime"],
|
||||||
|
@ -58,7 +46,17 @@ class Discord extends NotificationProvider {
|
||||||
name: "Error",
|
name: "Error",
|
||||||
value: heartbeatJSON["msg"] == null ? "N/A" : heartbeatJSON["msg"],
|
value: heartbeatJSON["msg"] == null ? "N/A" : heartbeatJSON["msg"],
|
||||||
},
|
},
|
||||||
],
|
];
|
||||||
|
|
||||||
|
// If heartbeatJSON is not null, we go into the normal alerting loop.
|
||||||
|
if (heartbeatJSON["status"] === DOWN) {
|
||||||
|
let discorddowndata = {
|
||||||
|
username: discordDisplayName,
|
||||||
|
embeds: [{
|
||||||
|
title: "❌ Your service " + monitorJSON["name"] + " went down. ❌",
|
||||||
|
color: 16711680,
|
||||||
|
timestamp: heartbeatJSON["time"],
|
||||||
|
fields: embedFields,
|
||||||
}],
|
}],
|
||||||
};
|
};
|
||||||
if (notification.discordChannelType === "createNewForumPost") {
|
if (notification.discordChannelType === "createNewForumPost") {
|
||||||
|
@ -78,24 +76,7 @@ class Discord extends NotificationProvider {
|
||||||
title: "✅ Your service " + monitorJSON["name"] + " is up! ✅",
|
title: "✅ Your service " + monitorJSON["name"] + " is up! ✅",
|
||||||
color: 65280,
|
color: 65280,
|
||||||
timestamp: heartbeatJSON["time"],
|
timestamp: heartbeatJSON["time"],
|
||||||
fields: [
|
fields: embedFields,
|
||||||
{
|
|
||||||
name: "Service Name",
|
|
||||||
value: monitorJSON["name"],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: monitorJSON["type"] === "push" ? "Service Type" : "Service URL",
|
|
||||||
value: this.extractAddress(monitorJSON),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: `Time (${heartbeatJSON["timezone"]})`,
|
|
||||||
value: heartbeatJSON["localDateTime"],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Ping",
|
|
||||||
value: heartbeatJSON["ping"] == null ? "N/A" : heartbeatJSON["ping"] + " ms",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
}],
|
}],
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue