2021-06-29 09:06:20 +01:00
|
|
|
const dayjs = require("dayjs");
|
2021-07-27 18:47:13 +01:00
|
|
|
const utc = require("dayjs/plugin/utc")
|
|
|
|
let timezone = require("dayjs/plugin/timezone")
|
2021-06-29 09:06:20 +01:00
|
|
|
dayjs.extend(utc)
|
|
|
|
dayjs.extend(timezone)
|
2021-07-27 18:47:13 +01:00
|
|
|
const { BeanModel } = require("redbean-node/dist/bean-model");
|
2021-06-29 09:06:20 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* status:
|
|
|
|
* 0 = DOWN
|
|
|
|
* 1 = UP
|
|
|
|
*/
|
|
|
|
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,
|
2021-06-30 19:02:54 +01:00
|
|
|
duration: this.duration,
|
2021-06-29 09:06:20 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = Heartbeat;
|