|
|
@ -182,16 +182,18 @@ export default {
|
|
|
|
// Also toast
|
|
|
|
// Also toast
|
|
|
|
if (data.important) {
|
|
|
|
if (data.important) {
|
|
|
|
|
|
|
|
|
|
|
|
if (data.status === 0) {
|
|
|
|
if (this.monitorList[data.monitorID] !== undefined) {
|
|
|
|
toast.error(`[${this.monitorList[data.monitorID].name}] [DOWN] ${data.msg}`, {
|
|
|
|
if (data.status === 0) {
|
|
|
|
timeout: false,
|
|
|
|
toast.error(`[${this.monitorList[data.monitorID].name}] [DOWN] ${data.msg}`, {
|
|
|
|
});
|
|
|
|
timeout: false,
|
|
|
|
} else if (data.status === 1) {
|
|
|
|
});
|
|
|
|
toast.success(`[${this.monitorList[data.monitorID].name}] [Up] ${data.msg}`, {
|
|
|
|
} else if (data.status === 1) {
|
|
|
|
timeout: 20000,
|
|
|
|
toast.success(`[${this.monitorList[data.monitorID].name}] [Up] ${data.msg}`, {
|
|
|
|
});
|
|
|
|
timeout: 20000,
|
|
|
|
} else {
|
|
|
|
});
|
|
|
|
toast(`[${this.monitorList[data.monitorID].name}] ${data.msg}`);
|
|
|
|
} else {
|
|
|
|
|
|
|
|
toast(`[${this.monitorList[data.monitorID].name}] ${data.msg}`);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (! (data.monitorID in this.importantHeartbeatList)) {
|
|
|
|
if (! (data.monitorID in this.importantHeartbeatList)) {
|
|
|
|