2021-07-27 10:47:13 -07:00
|
|
|
const { BeanModel } = require("redbean-node/dist/bean-model");
|
2021-06-29 01:06:20 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* status:
|
|
|
|
* 0 = DOWN
|
|
|
|
* 1 = UP
|
2021-07-27 10:53:59 -07:00
|
|
|
* 2 = PENDING
|
2022-01-23 06:22:00 -08:00
|
|
|
* 3 = MAINTENANCE
|
2021-06-29 01:06:20 -07:00
|
|
|
*/
|
|
|
|
class Heartbeat extends BeanModel {
|
|
|
|
|
2022-04-16 13:11:45 -07:00
|
|
|
/**
|
2022-04-22 11:10:13 -07:00
|
|
|
* Return an object that ready to parse to JSON for public
|
2022-04-16 13:11:45 -07:00
|
|
|
* Only show necessary data to public
|
2023-08-11 00:46:41 -07:00
|
|
|
* @returns {object} Object ready to parse
|
2022-04-16 13:11:45 -07:00
|
|
|
*/
|
2021-09-19 08:24:51 -07:00
|
|
|
toPublicJSON() {
|
|
|
|
return {
|
|
|
|
status: this.status,
|
|
|
|
time: this.time,
|
|
|
|
msg: "", // Hide for public
|
|
|
|
ping: this.ping,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2022-04-16 13:11:45 -07:00
|
|
|
/**
|
2022-04-22 11:10:13 -07:00
|
|
|
* Return an object that ready to parse to JSON
|
2023-08-11 00:46:41 -07:00
|
|
|
* @returns {object} Object ready to parse
|
2022-04-16 13:11:45 -07:00
|
|
|
*/
|
2021-06-29 01:06:20 -07:00
|
|
|
toJSON() {
|
|
|
|
return {
|
2023-11-24 02:11:36 -08:00
|
|
|
monitorID: this._monitorId,
|
|
|
|
status: this._status,
|
|
|
|
time: this._time,
|
|
|
|
msg: this._msg,
|
|
|
|
ping: this._ping,
|
|
|
|
important: this._important,
|
|
|
|
duration: this._duration,
|
|
|
|
retries: this._retries,
|
2021-06-29 01:06:20 -07:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = Heartbeat;
|