mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-04-11 10:52:20 +00:00
make DOWN the default fallback for docker container healthcheck
This commit is contained in:
parent
7f5dfcc051
commit
0b478404cf
1 changed files with 13 additions and 8 deletions
|
@ -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)) {
|
||||
bean.status = PENDING;
|
||||
bean.msg = res.data.State.Health.Status;
|
||||
} else if (res.data.State.Health && res.data.State.Health.Status === "unhealthy") {
|
||||
bean.status = DOWN;
|
||||
bean.msg = 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 {
|
||||
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…
Add table
Reference in a new issue