2021-07-01 02:03:06 -04:00
2021-06-25 09:55:49 -04:00
const dayjs = require ( "dayjs" ) ;
2021-06-27 04:10:55 -04:00
const utc = require ( 'dayjs/plugin/utc' )
var timezone = require ( 'dayjs/plugin/timezone' )
dayjs . extend ( utc )
dayjs . extend ( timezone )
const axios = require ( "axios" ) ;
2021-07-01 05:00:23 -04:00
const { tcping , ping } = require ( "../util-server" ) ;
2021-06-27 04:10:55 -04:00
const { R } = require ( "redbean-node" ) ;
2021-06-25 09:55:49 -04:00
const { BeanModel } = require ( "redbean-node/dist/bean-model" ) ;
2021-07-09 05:55:48 -04:00
const { Notification } = require ( "../notification" )
2021-06-27 04:10:55 -04:00
/ * *
* status :
* 0 = DOWN
* 1 = UP
* /
2021-06-25 09:55:49 -04:00
class Monitor extends BeanModel {
2021-07-09 05:55:48 -04:00
async toJSON ( ) {
let notificationIDList = { } ;
let list = await R . find ( "monitor_notification" , " monitor_id = ? " , [
this . id
] )
for ( let bean of list ) {
notificationIDList [ bean . notification _id ] = true ;
}
2021-06-25 09:55:49 -04:00
return {
id : this . id ,
name : this . name ,
url : this . url ,
2021-07-01 02:03:06 -04:00
hostname : this . hostname ,
port : this . port ,
2021-07-01 01:11:16 -04:00
weight : this . weight ,
2021-06-25 09:55:49 -04:00
active : this . active ,
type : this . type ,
interval : this . interval ,
2021-07-01 05:19:28 -04:00
keyword : this . keyword ,
2021-07-09 05:55:48 -04:00
notificationIDList
2021-06-25 09:55:49 -04:00
} ;
}
start ( io ) {
2021-06-29 04:06:20 -04:00
let previousBeat = null ;
2021-06-27 04:10:55 -04:00
const beat = async ( ) => {
2021-06-25 09:55:49 -04:00
console . log ( ` Monitor ${ this . id } : Heartbeat ` )
2021-06-27 04:10:55 -04:00
2021-06-29 04:06:20 -04:00
if ( ! previousBeat ) {
previousBeat = await R . findOne ( "heartbeat" , " monitor_id = ? ORDER BY time DESC" , [
this . id
] )
}
2021-06-27 04:10:55 -04:00
let bean = R . dispense ( "heartbeat" )
bean . monitor _id = this . id ;
bean . time = R . isoDateTime ( dayjs . utc ( ) ) ;
bean . status = 0 ;
2021-06-30 14:02:54 -04:00
// Duration
if ( previousBeat ) {
bean . duration = dayjs ( bean . time ) . diff ( dayjs ( previousBeat . time ) , 'second' ) ;
} else {
bean . duration = 0 ;
console . log ( previousBeat )
}
2021-06-27 04:10:55 -04:00
try {
2021-07-01 05:19:28 -04:00
if ( this . type === "http" || this . type === "keyword" ) {
2021-06-27 04:10:55 -04:00
let startTime = dayjs ( ) . valueOf ( ) ;
let res = await axios . get ( this . url )
bean . msg = ` ${ res . status } - ${ res . statusText } `
bean . ping = dayjs ( ) . valueOf ( ) - startTime ;
2021-07-01 05:19:28 -04:00
if ( this . type === "http" ) {
bean . status = 1 ;
} else {
if ( res . data . includes ( this . keyword ) ) {
bean . msg += ", keyword is found"
bean . status = 1 ;
} else {
throw new Error ( bean . msg + ", but keyword is not found" )
}
}
2021-07-01 02:03:06 -04:00
} else if ( this . type === "port" ) {
bean . ping = await tcping ( this . hostname , this . port ) ;
2021-07-01 09:47:14 -04:00
bean . msg = ""
2021-07-01 02:03:06 -04:00
bean . status = 1 ;
2021-07-01 05:00:23 -04:00
} else if ( this . type === "ping" ) {
bean . ping = await ping ( this . hostname ) ;
2021-07-01 09:47:14 -04:00
bean . msg = ""
2021-07-01 05:00:23 -04:00
bean . status = 1 ;
2021-06-27 04:10:55 -04:00
}
} catch ( error ) {
bean . msg = error . message ;
}
2021-06-29 04:06:20 -04:00
// Mark as important if status changed
if ( ! previousBeat || previousBeat . status !== bean . status ) {
bean . important = true ;
2021-07-09 05:55:48 -04:00
2021-07-09 07:33:22 -04:00
let notificationList = await R . getAll ( ` SELECT notification.* FROM notification, monitor_notification WHERE monitor_id = ? AND monitor_notification.notification_id = notification.id ` , [
2021-07-09 05:55:48 -04:00
this . id
] )
let promiseList = [ ] ;
let text ;
if ( bean . status === 1 ) {
text = "✅ Up"
} else {
text = "🔴 Down"
}
let msg = ` [ ${ this . name } ] [ ${ text } ] ${ bean . msg } ` ;
for ( let notification of notificationList ) {
2021-07-09 07:33:22 -04:00
promiseList . push ( Notification . send ( JSON . parse ( notification . config ) , msg , await this . toJSON ( ) , bean . toJSON ( ) ) ) ;
2021-07-09 05:55:48 -04:00
}
await Promise . all ( promiseList ) ;
2021-06-29 04:06:20 -04:00
} else {
bean . important = false ;
}
io . to ( this . user _id ) . emit ( "heartbeat" , bean . toJSON ( ) ) ;
2021-06-27 04:10:55 -04:00
await R . store ( bean )
2021-07-01 02:03:06 -04:00
Monitor . sendStats ( io , this . id , this . user _id )
2021-06-29 04:06:20 -04:00
previousBeat = bean ;
2021-06-25 09:55:49 -04:00
}
beat ( ) ;
this . heartbeatInterval = setInterval ( beat , this . interval * 1000 ) ;
}
stop ( ) {
clearInterval ( this . heartbeatInterval )
}
2021-06-30 09:04:58 -04:00
static async sendStats ( io , monitorID , userID ) {
Monitor . sendAvgPing ( 24 , io , monitorID , userID ) ;
2021-07-01 01:11:16 -04:00
Monitor . sendUptime ( 24 , io , monitorID , userID ) ;
Monitor . sendUptime ( 24 * 30 , io , monitorID , userID ) ;
2021-06-30 09:04:58 -04:00
}
2021-07-01 01:11:16 -04:00
/ * *
*
* @ param duration : int Hours
* /
2021-06-30 09:04:58 -04:00
static async sendAvgPing ( duration , io , monitorID , userID ) {
let avgPing = parseInt ( await R . getCell ( `
SELECT AVG ( ping )
FROM heartbeat
WHERE time > DATE ( 'now' , ? || ' hours' )
2021-07-01 01:11:16 -04:00
AND ping IS NOT NULL
2021-06-30 09:04:58 -04:00
AND monitor _id = ? ` , [
- duration ,
monitorID
] ) ) ;
io . to ( userID ) . emit ( "avgPing" , monitorID , avgPing ) ;
}
2021-07-01 01:11:16 -04:00
/ * *
2021-07-09 02:14:03 -04:00
* Uptime with calculation
* Calculation based on :
* https : //www.uptrends.com/support/kb/reporting/calculation-of-uptime-and-downtime
2021-07-01 01:11:16 -04:00
* @ param duration : int Hours
* /
static async sendUptime ( duration , io , monitorID , userID ) {
2021-07-01 05:00:23 -04:00
let sec = duration * 3600 ;
let downtimeList = await R . getAll ( `
2021-07-09 02:14:03 -04:00
SELECT duration , time , status
2021-07-01 01:11:16 -04:00
FROM heartbeat
WHERE time > DATE ( 'now' , ? || ' hours' )
AND monitor _id = ? ` , [
- duration ,
monitorID
2021-07-01 05:00:23 -04:00
] ) ;
let downtime = 0 ;
2021-07-09 02:14:03 -04:00
let total = 0 ;
let uptime ;
2021-07-01 05:00:23 -04:00
2021-07-09 02:14:03 -04:00
for ( let row of downtimeList ) {
let value = parseInt ( row . duration )
let time = row . time
2021-07-01 09:47:14 -04:00
2021-07-09 02:14:03 -04:00
// Handle if heartbeat duration longer than the target duration
// e.g. Heartbeat duration = 28hrs, but target duration = 24hrs
if ( value > sec ) {
let trim = dayjs . utc ( ) . diff ( dayjs ( time ) , 'second' ) ;
value = sec - trim ;
2021-07-01 05:00:23 -04:00
2021-07-09 02:14:03 -04:00
if ( value < 0 ) {
value = 0 ;
2021-07-01 05:00:23 -04:00
}
}
2021-07-01 01:11:16 -04:00
2021-07-09 02:14:03 -04:00
total += value ;
if ( row . status === 0 ) {
downtime += value ;
2021-07-06 01:44:33 -04:00
}
2021-07-01 05:00:23 -04:00
}
2021-07-09 02:14:03 -04:00
uptime = ( total - downtime ) / total ;
if ( uptime < 0 ) {
uptime = 0 ;
}
2021-07-01 01:11:16 -04:00
io . to ( userID ) . emit ( "uptime" , monitorID , duration , uptime ) ;
2021-06-30 09:04:58 -04:00
}
2021-06-25 09:55:49 -04:00
}
module . exports = Monitor ;