Fix: subtract time taken to run heartbeat (#3072)

pull/3515/head
Nelson Chan 8 months ago committed by GitHub
parent 8c24b02fce
commit 33cc96f918
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -948,7 +948,15 @@ class Monitor extends BeanModel {
if (! this.isStop) {
log.debug("monitor", `[${this.name}] SetTimeout for next check.`);
this.heartbeatInterval = setTimeout(safeBeat, beatInterval * 1000);
let intervalRemainingMs = Math.max(
1,
beatInterval * 1000 - dayjs().diff(dayjs.utc(bean.time))
);
log.debug("monitor", `[${this.name}] Next heartbeat in: ${intervalRemainingMs}ms`);
this.heartbeatInterval = setTimeout(safeBeat, intervalRemainingMs);
} else {
log.info("monitor", `[${this.name}] isStop = true, no next check.`);
}

Loading…
Cancel
Save