mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-10-01 01:25:45 -04:00
make DOWN the default fallback for docker container healthcheck
This commit is contained in:
parent
7f5dfcc051
commit
0b478404cf
@ -770,15 +770,20 @@ class Monitor extends BeanModel {
|
||||
let res = await axios.request(options);
|
||||
|
||||
if (res.data.State.Running) {
|
||||
if (res.data.State.Health && ![ "healthy", "unhealthy", "" ].includes(res.data.State.Health.Status)) {
|
||||
if (res.data.State.Health) {
|
||||
if ([ "", "healthy" ].includes(res.data.State.Health.Status)) {
|
||||
bean.status = UP;
|
||||
bean.msg = res.data.State.Health.Status;
|
||||
} else if (res.data.State.Health.Status === "starting") {
|
||||
bean.status = PENDING;
|
||||
bean.msg = res.data.State.Health.Status;
|
||||
} else if (res.data.State.Health && res.data.State.Health.Status === "unhealthy") {
|
||||
} else {
|
||||
bean.status = DOWN;
|
||||
bean.msg = res.data.State.Health.Status;
|
||||
}
|
||||
} else {
|
||||
bean.status = UP;
|
||||
bean.msg = res.data.State.Health ? res.data.State.Health.Status : res.data.State.Status;
|
||||
bean.status = DOWN;
|
||||
bean.msg = res.data.State.Status;
|
||||
}
|
||||
} else {
|
||||
throw Error("Container State is " + res.data.State.Status);
|
||||
|
Loading…
Reference in New Issue
Block a user