mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-09 23:24:07 -08:00
console added with double quotes and semicolons. console added with username so i can remove later
This commit is contained in:
parent
a16b42f98c
commit
a5d0f7a7db
|
@ -606,9 +606,9 @@ class Monitor extends BeanModel {
|
||||||
if (result.toString() === this.expectedValue) {
|
if (result.toString() === this.expectedValue) {
|
||||||
bean.msg += ", expected value is found";
|
bean.msg += ", expected value is found";
|
||||||
bean.status = UP;
|
bean.status = UP;
|
||||||
console.log('json-query successful')
|
console.log("neelbhanushali: json-query successful");
|
||||||
} else {
|
} else {
|
||||||
console.log('json-query unsuccessful')
|
console.log("neelbhanushali: json-query unsuccessful");
|
||||||
throw new Error(bean.msg + ", but value is not equal to expected value, value was: [" + result + "]");
|
throw new Error(bean.msg + ", but value is not equal to expected value, value was: [" + result + "]");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -900,7 +900,7 @@ class Monitor extends BeanModel {
|
||||||
retries = 0;
|
retries = 0;
|
||||||
|
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.log('came in catch')
|
console.log("neelbhanushali: came in catch");
|
||||||
if (error?.name === "CanceledError") {
|
if (error?.name === "CanceledError") {
|
||||||
bean.msg = `timeout by AbortSignal (${this.timeout}s)`;
|
bean.msg = `timeout by AbortSignal (${this.timeout}s)`;
|
||||||
} else {
|
} else {
|
||||||
|
@ -915,7 +915,7 @@ class Monitor extends BeanModel {
|
||||||
} else if ((this.maxretries > 0) && (retries < this.maxretries)) {
|
} else if ((this.maxretries > 0) && (retries < this.maxretries)) {
|
||||||
retries++;
|
retries++;
|
||||||
bean.status = PENDING;
|
bean.status = PENDING;
|
||||||
console.log('checking retries', retries, this.maxretries)
|
console.log("neelbhanushali: checking retries", retries, this.maxretries);
|
||||||
} else {
|
} else {
|
||||||
// Continue counting retries during DOWN
|
// Continue counting retries during DOWN
|
||||||
retries++;
|
retries++;
|
||||||
|
@ -974,7 +974,7 @@ class Monitor extends BeanModel {
|
||||||
} else if (bean.status === MAINTENANCE) {
|
} else if (bean.status === MAINTENANCE) {
|
||||||
log.warn("monitor", `Monitor #${this.id} '${this.name}': Under Maintenance | Type: ${this.type}`);
|
log.warn("monitor", `Monitor #${this.id} '${this.name}': Under Maintenance | Type: ${this.type}`);
|
||||||
} else {
|
} else {
|
||||||
beatInterval = this.retryInterval
|
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}`);
|
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}`);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue