diff --git a/server/model/monitor.js b/server/model/monitor.js index b2fed86f5..140a9442c 100644 --- a/server/model/monitor.js +++ b/server/model/monitor.js @@ -606,7 +606,9 @@ class Monitor extends BeanModel { if (result.toString() === this.expectedValue) { bean.msg += ", expected value is found"; bean.status = UP; + console.log('json-query successful') } else { + console.log('json-query unsuccessful') throw new Error(bean.msg + ", but value is not equal to expected value, value was: [" + result + "]"); } } @@ -898,7 +900,7 @@ class Monitor extends BeanModel { retries = 0; } catch (error) { - + console.log('came in catch') if (error?.name === "CanceledError") { bean.msg = `timeout by AbortSignal (${this.timeout}s)`; } else { @@ -913,6 +915,7 @@ class Monitor extends BeanModel { } else if ((this.maxretries > 0) && (retries < this.maxretries)) { retries++; bean.status = PENDING; + console.log('checking retries', retries, this.maxretries) } else { // Continue counting retries during DOWN retries++; @@ -971,6 +974,7 @@ class Monitor extends BeanModel { } else if (bean.status === MAINTENANCE) { log.warn("monitor", `Monitor #${this.id} '${this.name}': Under Maintenance | Type: ${this.type}`); } else { + beatInterval = this.retryInterval log.warn("monitor", `Monitor #${this.id} '${this.name}': Failing: ${bean.msg} | Interval: ${beatInterval} seconds | Type: ${this.type} | Down Count: ${bean.downCount} | Resend Interval: ${this.resendInterval}`); }