2021-08-10 10:51:30 +01:00
|
|
|
const PrometheusClient = require("prom-client");
|
2022-04-13 16:33:37 +01:00
|
|
|
const { log } = require("../src/util");
|
2021-07-27 17:52:31 +01:00
|
|
|
|
|
|
|
const commonLabels = [
|
2021-08-10 10:51:30 +01:00
|
|
|
"monitor_name",
|
|
|
|
"monitor_type",
|
|
|
|
"monitor_url",
|
|
|
|
"monitor_hostname",
|
|
|
|
"monitor_port",
|
2021-10-10 09:37:53 +01:00
|
|
|
];
|
2021-07-27 17:52:31 +01:00
|
|
|
|
2022-04-16 18:39:49 +01:00
|
|
|
const monitorCertDaysRemaining = new PrometheusClient.Gauge({
|
2021-08-10 10:51:30 +01:00
|
|
|
name: "monitor_cert_days_remaining",
|
|
|
|
help: "The number of days remaining until the certificate expires",
|
2021-08-10 07:55:06 +01:00
|
|
|
labelNames: commonLabels
|
|
|
|
});
|
|
|
|
|
2022-04-16 18:39:49 +01:00
|
|
|
const monitorCertIsValid = new PrometheusClient.Gauge({
|
2021-08-10 10:51:30 +01:00
|
|
|
name: "monitor_cert_is_valid",
|
|
|
|
help: "Is the certificate still valid? (1 = Yes, 0= No)",
|
2021-08-10 07:55:06 +01:00
|
|
|
labelNames: commonLabels
|
|
|
|
});
|
2022-04-16 18:39:49 +01:00
|
|
|
const monitorResponseTime = new PrometheusClient.Gauge({
|
2021-08-10 10:51:30 +01:00
|
|
|
name: "monitor_response_time",
|
|
|
|
help: "Monitor Response Time (ms)",
|
2021-07-27 17:52:31 +01:00
|
|
|
labelNames: commonLabels
|
|
|
|
});
|
|
|
|
|
2022-04-16 18:39:49 +01:00
|
|
|
const monitorStatus = new PrometheusClient.Gauge({
|
2021-08-10 10:51:30 +01:00
|
|
|
name: "monitor_status",
|
2023-06-10 19:22:33 +01:00
|
|
|
help: "Monitor Status (1 = UP, 0= DOWN, 2= PENDING, 3= MAINTENANCE)",
|
2021-07-27 17:52:31 +01:00
|
|
|
labelNames: commonLabels
|
|
|
|
});
|
|
|
|
|
|
|
|
class Prometheus {
|
2022-04-26 00:26:57 +01:00
|
|
|
monitorLabelValues = {};
|
2021-07-27 17:52:31 +01:00
|
|
|
|
2022-04-20 19:56:40 +01:00
|
|
|
/**
|
|
|
|
* @param {Object} monitor Monitor object to monitor
|
|
|
|
*/
|
2021-07-27 17:52:31 +01:00
|
|
|
constructor(monitor) {
|
|
|
|
this.monitorLabelValues = {
|
|
|
|
monitor_name: monitor.name,
|
|
|
|
monitor_type: monitor.type,
|
|
|
|
monitor_url: monitor.url,
|
|
|
|
monitor_hostname: monitor.hostname,
|
|
|
|
monitor_port: monitor.port
|
2021-10-10 09:37:53 +01:00
|
|
|
};
|
2021-07-27 17:52:31 +01:00
|
|
|
}
|
|
|
|
|
2022-04-20 19:56:40 +01:00
|
|
|
/**
|
|
|
|
* Update the metrics page
|
|
|
|
* @param {Object} heartbeat Heartbeat details
|
|
|
|
* @param {Object} tlsInfo TLS details
|
|
|
|
*/
|
2021-08-10 10:51:30 +01:00
|
|
|
update(heartbeat, tlsInfo) {
|
2021-10-10 09:37:53 +01:00
|
|
|
|
2021-08-10 13:00:59 +01:00
|
|
|
if (typeof tlsInfo !== "undefined") {
|
2021-08-10 12:14:13 +01:00
|
|
|
try {
|
2022-04-17 08:43:03 +01:00
|
|
|
let isValid;
|
|
|
|
if (tlsInfo.valid === true) {
|
2022-04-13 17:30:32 +01:00
|
|
|
isValid = 1;
|
2021-08-10 12:14:13 +01:00
|
|
|
} else {
|
2022-04-13 17:30:32 +01:00
|
|
|
isValid = 0;
|
2021-08-10 12:14:13 +01:00
|
|
|
}
|
2022-04-16 18:39:49 +01:00
|
|
|
monitorCertIsValid.set(this.monitorLabelValues, isValid);
|
2021-08-10 12:14:13 +01:00
|
|
|
} catch (e) {
|
2022-04-13 16:33:37 +01:00
|
|
|
log.error("prometheus", "Caught error");
|
|
|
|
log.error("prometheus", e);
|
2021-08-10 12:14:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
2022-01-14 06:51:45 +00:00
|
|
|
if (tlsInfo.certInfo != null) {
|
2022-04-16 18:39:49 +01:00
|
|
|
monitorCertDaysRemaining.set(this.monitorLabelValues, tlsInfo.certInfo.daysRemaining);
|
2022-01-12 08:12:12 +00:00
|
|
|
}
|
2021-08-10 12:14:13 +01:00
|
|
|
} catch (e) {
|
2022-04-13 16:33:37 +01:00
|
|
|
log.error("prometheus", "Caught error");
|
|
|
|
log.error("prometheus", e);
|
2021-08-10 12:14:13 +01:00
|
|
|
}
|
|
|
|
}
|
2021-08-10 10:51:30 +01:00
|
|
|
|
2021-07-27 17:52:31 +01:00
|
|
|
try {
|
2022-04-16 18:39:49 +01:00
|
|
|
monitorStatus.set(this.monitorLabelValues, heartbeat.status);
|
2021-07-27 17:52:31 +01:00
|
|
|
} catch (e) {
|
2022-04-13 16:33:37 +01:00
|
|
|
log.error("prometheus", "Caught error");
|
|
|
|
log.error("prometheus", e);
|
2021-07-27 17:52:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
2021-08-10 10:51:30 +01:00
|
|
|
if (typeof heartbeat.ping === "number") {
|
2022-04-16 18:39:49 +01:00
|
|
|
monitorResponseTime.set(this.monitorLabelValues, heartbeat.ping);
|
2021-07-27 17:52:31 +01:00
|
|
|
} else {
|
|
|
|
// Is it good?
|
2022-04-16 18:39:49 +01:00
|
|
|
monitorResponseTime.set(this.monitorLabelValues, -1);
|
2021-07-27 17:52:31 +01:00
|
|
|
}
|
|
|
|
} catch (e) {
|
2022-04-13 16:33:37 +01:00
|
|
|
log.error("prometheus", "Caught error");
|
|
|
|
log.error("prometheus", e);
|
2021-07-27 17:52:31 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-05 22:19:05 +00:00
|
|
|
/** Remove monitor from prometheus */
|
2022-01-07 03:57:24 +00:00
|
|
|
remove() {
|
|
|
|
try {
|
2022-04-16 18:39:49 +01:00
|
|
|
monitorCertDaysRemaining.remove(this.monitorLabelValues);
|
|
|
|
monitorCertIsValid.remove(this.monitorLabelValues);
|
|
|
|
monitorResponseTime.remove(this.monitorLabelValues);
|
|
|
|
monitorStatus.remove(this.monitorLabelValues);
|
2022-01-07 03:57:24 +00:00
|
|
|
} catch (e) {
|
|
|
|
console.error(e);
|
|
|
|
}
|
|
|
|
}
|
2021-07-27 17:52:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
Prometheus
|
2021-10-10 09:37:53 +01:00
|
|
|
};
|