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