-
Notifications
You must be signed in to change notification settings - Fork 1
/
watchdog.ts
41 lines (32 loc) · 1021 Bytes
/
watchdog.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import { getDevices } from "./Device/Device";
import { pleft, time } from "./Utils/belibrary";
import { scope } from "./Utils/Logger";
const log = scope("watchdog");
let watchdogTask: any = null;
const run = () => {
const devices = getDevices();
const now = time();
for (const device of Object.values(devices)) {
if (!device.isWSAvailable())
continue;
const heartbeat = now - device.lastHeartbeat;
log.debug(`<${pleft(device.model.hardwareId, 14)}> d_heartbeat=${heartbeat}`);
if (heartbeat > 15) {
log.warn(`Thiết bị không phản hồi sau 15 giây, sẽ đặt trạng thái của thiết bị thành ngoại tuyến.`)
device.setWS(null);
}
}
}
export const startWatchdog = () => {
log.info(`Đang khởi động Watchdog`);
if (watchdogTask)
clearInterval(watchdogTask);
watchdogTask = setInterval(() => run(), 5000);
}
export const stopWatchdog = () => {
if (watchdogTask) {
log.warn(`Đang tắt Watchdog...`);
clearInterval(watchdogTask);
watchdogTask = null;
}
}