From 595cd9322080b209d9a7925463c850cae29d2c33 Mon Sep 17 00:00:00 2001 From: Louis Lam Date: Thu, 24 Feb 2022 15:11:17 +0800 Subject: [PATCH] Check invalid interval --- server/model/monitor.js | 25 ++++++++++++++----------- 1 file changed, 14 insertions(+), 11 deletions(-) diff --git a/server/model/monitor.js b/server/model/monitor.js index c4441d63e..b4a805980 100644 --- a/server/model/monitor.js +++ b/server/model/monitor.js @@ -119,6 +119,19 @@ class Monitor extends BeanModel { const beat = async () => { + let beatInterval = this.interval; + + if (! beatInterval) { + beatInterval = 1; + } + + if (demoMode) { + if (beatInterval < 20) { + console.log("beat interval too low, reset to 20s"); + beatInterval = 20; + } + } + // Expose here for prometheus update // undefined if not https let tlsInfo = undefined; @@ -303,7 +316,7 @@ class Monitor extends BeanModel { } else { // No need to insert successful heartbeat for push type, so end here retries = 0; - this.heartbeatInterval = setTimeout(beat, this.interval * 1000); + this.heartbeatInterval = setTimeout(beat, beatInterval * 1000); return; } @@ -377,8 +390,6 @@ class Monitor extends BeanModel { } } - let beatInterval = this.interval; - debug(`[${this.name}] Check isImportant`); let isImportant = Monitor.isImportantBeat(isFirstBeat, previousBeat?.status, bean.status); @@ -422,14 +433,6 @@ class Monitor extends BeanModel { previousBeat = bean; if (! this.isStop) { - - if (demoMode) { - if (beatInterval < 20) { - console.log("beat interval too low, reset to 20s"); - beatInterval = 20; - } - } - debug(`[${this.name}] SetTimeout for next check.`); this.heartbeatInterval = setTimeout(safeBeat, beatInterval * 1000); } else {