uptime-kuma/server/model/heartbeat.js

31 lines
648 B
JavaScript
Raw Normal View History

2021-06-29 08:06:20 +00:00
const dayjs = require("dayjs");
2021-07-27 17:47:13 +00:00
const utc = require("dayjs/plugin/utc")
let timezone = require("dayjs/plugin/timezone")
2021-06-29 08:06:20 +00:00
dayjs.extend(utc)
dayjs.extend(timezone)
2021-07-27 17:47:13 +00:00
const { BeanModel } = require("redbean-node/dist/bean-model");
2021-06-29 08:06:20 +00:00
/**
* status:
* 0 = DOWN
* 1 = UP
2021-07-27 17:53:59 +00:00
* 2 = PENDING
2021-06-29 08:06:20 +00:00
*/
class Heartbeat extends BeanModel {
toJSON() {
return {
monitorID: this.monitor_id,
status: this.status,
time: this.time,
msg: this.msg,
ping: this.ping,
important: this.important,
duration: this.duration,
2021-06-29 08:06:20 +00:00
};
}
}
module.exports = Heartbeat;