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

180 lines
4.9 KiB

3 years ago
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 {tcping, ping} = require("../util-server");
3 years ago
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,
3 years ago
hostname: this.hostname,
port: this.port,
3 years ago
weight: this.weight,
3 years ago
active: this.active,
type: this.type,
interval: this.interval,
};
}
start(io) {
3 years ago
let previousBeat = null;
3 years ago
const beat = async () => {
3 years ago
console.log(`Monitor ${this.id}: Heartbeat`)
3 years ago
3 years ago
if (! previousBeat) {
previousBeat = await R.findOne("heartbeat", " monitor_id = ? ORDER BY time DESC", [
this.id
])
}
3 years ago
let bean = R.dispense("heartbeat")
bean.monitor_id = this.id;
bean.time = R.isoDateTime(dayjs.utc());
bean.status = 0;
// Duration
if (previousBeat) {
bean.duration = dayjs(bean.time).diff(dayjs(previousBeat.time), 'second');
} else {
bean.duration = 0;
console.log(previousBeat)
}
3 years ago
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;
3 years ago
} else if (this.type === "port") {
bean.ping = await tcping(this.hostname, this.port);
bean.status = 1;
} else if (this.type === "ping") {
bean.ping = await ping(this.hostname);
bean.status = 1;
3 years ago
}
} catch (error) {
bean.msg = error.message;
}
3 years ago
// Mark as important if status changed
if (! previousBeat || previousBeat.status !== bean.status) {
bean.important = true;
} else {
bean.important = false;
}
io.to(this.user_id).emit("heartbeat", bean.toJSON());
3 years ago
await R.store(bean)
3 years ago
Monitor.sendStats(io, this.id, this.user_id)
3 years ago
previousBeat = bean;
3 years ago
}
beat();
this.heartbeatInterval = setInterval(beat, this.interval * 1000);
}
stop() {
clearInterval(this.heartbeatInterval)
}
static async sendStats(io, monitorID, userID) {
Monitor.sendAvgPing(24, io, monitorID, userID);
3 years ago
Monitor.sendUptime(24, io, monitorID, userID);
Monitor.sendUptime(24 * 30, io, monitorID, userID);
}
3 years ago
/**
*
* @param duration : int Hours
*/
static async sendAvgPing(duration, io, monitorID, userID) {
let avgPing = parseInt(await R.getCell(`
SELECT AVG(ping)
FROM heartbeat
WHERE time > DATE('now', ? || ' hours')
3 years ago
AND ping IS NOT NULL
AND monitor_id = ? `, [
-duration,
monitorID
]));
io.to(userID).emit("avgPing", monitorID, avgPing);
}
3 years ago
/**
*
* @param duration : int Hours
*/
static async sendUptime(duration, io, monitorID, userID) {
let sec = duration * 3600;
let downtimeList = await R.getAll(`
SELECT duration, time
3 years ago
FROM heartbeat
WHERE time > DATE('now', ? || ' hours')
AND status = 0
AND monitor_id = ? `, [
-duration,
monitorID
]);
let downtime = 0;
for (let row of downtimeList) {
let value = parseInt(row.duration)
let time = row.time
// Handle if heartbeat duration longer than the target duration
// e.g. Heartbeat duration = 28hrs, but target duration = 24hrs
if (value <= sec) {
downtime += value;
} else {
console.log("Now: " + dayjs.utc());
console.log("Time: " + dayjs(time))
let trim = dayjs.utc().diff(dayjs(time), 'second');
console.log("trim: " + trim);
value = sec - trim;
if (value < 0) {
value = 0;
}
downtime += value;
}
}
3 years ago
let uptime = (sec - downtime) / sec;
if (uptime < 0) {
uptime = 0;
}
3 years ago
io.to(userID).emit("uptime", monitorID, duration, uptime);
}
3 years ago
}
module.exports = Monitor;