You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
uptime-kuma/server/model/monitor.js

73 lines
1.8 KiB

3 years ago
const dayjs = require("dayjs");
3 years ago
const utc = require('dayjs/plugin/utc')
var timezone = require('dayjs/plugin/timezone')
dayjs.extend(utc)
dayjs.extend(timezone)
const axios = require("axios");
const {R} = require("redbean-node");
3 years ago
const {BeanModel} = require("redbean-node/dist/bean-model");
3 years ago
/**
* status:
* 0 = DOWN
* 1 = UP
*/
3 years ago
class Monitor extends BeanModel {
toJSON() {
return {
id: this.id,
name: this.name,
url: this.url,
upRate: this.upRate,
active: this.active,
type: this.type,
interval: this.interval,
};
}
start(io) {
3 years ago
const beat = async () => {
3 years ago
console.log(`Monitor ${this.id}: Heartbeat`)
3 years ago
let bean = R.dispense("heartbeat")
bean.monitor_id = this.id;
bean.time = R.isoDateTime(dayjs.utc());
bean.status = 0;
try {
if (this.type === "http") {
let startTime = dayjs().valueOf();
let res = await axios.get(this.url)
bean.msg = `${res.status} - ${res.statusText}`
bean.ping = dayjs().valueOf() - startTime;
bean.status = 1;
}
} catch (error) {
bean.msg = error.message;
}
io.to(this.user_id).emit("heartbeat", {
monitorID: this.id,
status: bean.status,
time: bean.time,
msg: bean.msg,
ping: bean.ping,
});
await R.store(bean)
3 years ago
}
beat();
this.heartbeatInterval = setInterval(beat, this.interval * 1000);
}
stop() {
clearInterval(this.heartbeatInterval)
}
}
module.exports = Monitor;