mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-07-18 23:34:04 +02:00
fix merge issue
This commit is contained in:
parent
6e0f1c46b8
commit
771845c62f
1 changed files with 32 additions and 25 deletions
|
@ -11,7 +11,19 @@ class GroupMonitorType extends MonitorType {
|
||||||
async check(monitor, heartbeat, _server) {
|
async check(monitor, heartbeat, _server) {
|
||||||
const children = await Monitor.getChildren(monitor.id);
|
const children = await Monitor.getChildren(monitor.id);
|
||||||
|
|
||||||
if (children.length > 0) {
|
if (children.length == 0) {
|
||||||
|
// Set status pending if group is empty
|
||||||
|
heartbeat.status = PENDING;
|
||||||
|
heartbeat.msg = "Group empty";
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if (children.filter(child => child.active).length === 0) {
|
||||||
|
// Set status pending if all children are paused
|
||||||
|
bean.status = PENDING;
|
||||||
|
bean.msg = "All Children are paused.";
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
heartbeat.status = UP;
|
heartbeat.status = UP;
|
||||||
heartbeat.msg = "All children up and running";
|
heartbeat.msg = "All children up and running";
|
||||||
for (const child of children) {
|
for (const child of children) {
|
||||||
|
@ -35,11 +47,6 @@ class GroupMonitorType extends MonitorType {
|
||||||
if (heartbeat.status !== UP) {
|
if (heartbeat.status !== UP) {
|
||||||
heartbeat.msg = "Child inaccessible";
|
heartbeat.msg = "Child inaccessible";
|
||||||
}
|
}
|
||||||
} else {
|
|
||||||
// Set status pending if group is empty
|
|
||||||
heartbeat.status = PENDING;
|
|
||||||
heartbeat.msg = "Group empty";
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue