2021-08-10 17:51:30 +08:00
|
|
|
const PrometheusClient = require("prom-client");
|
2022-04-13 23:33:37 +08:00
|
|
|
const { log } = require("../src/util");
|
2021-07-28 00:52:31 +08:00
|
|
|
|
|
|
|
const commonLabels = [
|
2021-08-10 17:51:30 +08:00
|
|
|
"monitor_name",
|
|
|
|
"monitor_type",
|
|
|
|
"monitor_url",
|
|
|
|
"monitor_hostname",
|
|
|
|
"monitor_port",
|
2021-10-10 16:37:53 +08:00
|
|
|
];
|
2021-07-28 00:52:31 +08:00
|
|
|
|
2024-10-09 07:17:11 +08: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
|
|
|
|
});
|
2025-01-08 12:30:18 +01:00
|
|
|
|
|
|
|
const monitorUptime1y = new PrometheusClient.Gauge({
|
|
|
|
name: "monitor_uptime_1y",
|
|
|
|
help: "Monitor Uptime 1y (%)",
|
|
|
|
labelNames: commonLabels,
|
|
|
|
});
|
|
|
|
|
|
|
|
const monitorUptime30d = new PrometheusClient.Gauge({
|
|
|
|
name: "monitor_uptime_30d",
|
|
|
|
help: "Monitor Uptime 30d (%)",
|
|
|
|
labelNames: commonLabels,
|
|
|
|
});
|
|
|
|
|
|
|
|
const monitorUptime24h = new PrometheusClient.Gauge({
|
|
|
|
name: "monitor_uptime_24h",
|
|
|
|
help: "Monitor Uptime 24h (%)",
|
|
|
|
labelNames: commonLabels,
|
|
|
|
});
|
|
|
|
|
|
|
|
const monitorAverageResponseTime = new PrometheusClient.Gauge({
|
|
|
|
name: "monitor_average_response_time",
|
|
|
|
help: "Monitor Average Response Time (ms)",
|
|
|
|
labelNames: commonLabels,
|
|
|
|
});
|
|
|
|
|
2024-10-09 07:17:11 +08:00
|
|
|
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 07:17:11 +08:00
|
|
|
class Prometheus {
|
|
|
|
monitorLabelValues = {};
|
2024-08-24 18:02:57 +02:00
|
|
|
|
|
|
|
/**
|
2024-10-09 07:17:11 +08:00
|
|
|
* @param {object} monitor Monitor object to monitor
|
2024-08-24 18:02:57 +02:00
|
|
|
*/
|
2024-10-09 07:17:11 +08:00
|
|
|
constructor(monitor) {
|
2021-07-28 00:52:31 +08: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 16:37:53 +08:00
|
|
|
};
|
2021-07-28 00:52:31 +08:00
|
|
|
}
|
|
|
|
|
2022-04-20 19:56:40 +01: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 19:56:40 +01:00
|
|
|
*/
|
2025-01-08 12:30:18 +01:00
|
|
|
update(heartbeat, tlsInfo, uptime) {
|
2024-10-09 07:17:11 +08:00
|
|
|
|
2021-08-10 20:00:59 +08:00
|
|
|
if (typeof tlsInfo !== "undefined") {
|
2021-08-10 12:14:13 +01:00
|
|
|
try {
|
2022-04-17 15:43:03 +08:00
|
|
|
let isValid;
|
|
|
|
if (tlsInfo.valid === true) {
|
2022-04-14 00:30:32 +08:00
|
|
|
isValid = 1;
|
2021-08-10 12:14:13 +01:00
|
|
|
} else {
|
2022-04-14 00:30:32 +08:00
|
|
|
isValid = 0;
|
2021-08-10 12:14:13 +01:00
|
|
|
}
|
2024-10-09 07:17:11 +08:00
|
|
|
monitorCertIsValid.set(this.monitorLabelValues, isValid);
|
2021-08-10 12:14:13 +01:00
|
|
|
} catch (e) {
|
2022-04-13 23:33:37 +08:00
|
|
|
log.error("prometheus", "Caught error");
|
|
|
|
log.error("prometheus", e);
|
2021-08-10 12:14:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
2022-01-14 08:51:45 +02:00
|
|
|
if (tlsInfo.certInfo != null) {
|
2024-10-09 07:17:11 +08:00
|
|
|
monitorCertDaysRemaining.set(this.monitorLabelValues, tlsInfo.certInfo.daysRemaining);
|
2022-01-12 10:12:12 +02:00
|
|
|
}
|
2021-08-10 12:14:13 +01:00
|
|
|
} catch (e) {
|
2022-04-13 23:33:37 +08:00
|
|
|
log.error("prometheus", "Caught error");
|
|
|
|
log.error("prometheus", e);
|
2021-08-10 12:14:13 +01:00
|
|
|
}
|
|
|
|
}
|
2021-08-10 17:51:30 +08:00
|
|
|
|
2025-01-08 12:30:18 +01:00
|
|
|
if (uptime) {
|
|
|
|
if (typeof uptime.avgPing !== "undefined") {
|
|
|
|
try {
|
|
|
|
if (typeof uptime.avgPing === "number") {
|
|
|
|
monitorAverageResponseTime.set(
|
|
|
|
this.monitorLabelValues,
|
|
|
|
uptime.avgPing
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
// Is it good?
|
|
|
|
monitorAverageResponseTime.set(
|
|
|
|
this.monitorLabelValues,
|
|
|
|
-1
|
|
|
|
);
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
log.error("prometheus", "Caught error");
|
|
|
|
log.error("prometheus", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (typeof uptime.data24h !== "undefined") {
|
|
|
|
try {
|
|
|
|
if (typeof uptime.data24h === "number") {
|
|
|
|
monitorUptime24h.set(
|
|
|
|
this.monitorLabelValues,
|
|
|
|
uptime.data24h
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
// Is it good?
|
|
|
|
monitorUptime24h.set(this.monitorLabelValues, -1);
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
log.error("prometheus", "Caught error");
|
|
|
|
log.error("prometheus", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (typeof uptime.data30d !== "undefined") {
|
|
|
|
try {
|
|
|
|
if (typeof uptime.data30d === "number") {
|
|
|
|
monitorUptime30d.set(
|
|
|
|
this.monitorLabelValues,
|
|
|
|
uptime.data30d
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
// Is it good?
|
|
|
|
monitorUptime30d.set(this.monitorLabelValues, -1);
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
log.error("prometheus", "Caught error");
|
|
|
|
log.error("prometheus", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (typeof uptime.data1y !== "undefined") {
|
|
|
|
try {
|
|
|
|
if (typeof uptime.data1y === "number") {
|
|
|
|
monitorUptime1y.set(
|
|
|
|
this.monitorLabelValues,
|
|
|
|
uptime.data1y
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
// Is it good?
|
|
|
|
monitorUptime1y.set(this.monitorLabelValues, -1);
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
log.error("prometheus", "Caught error");
|
|
|
|
log.error("prometheus", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-04-24 14:37:17 +08:00
|
|
|
if (heartbeat) {
|
|
|
|
try {
|
2024-10-09 07:17:11 +08:00
|
|
|
monitorStatus.set(this.monitorLabelValues, heartbeat.status);
|
2024-04-24 14:37:17 +08:00
|
|
|
} catch (e) {
|
|
|
|
log.error("prometheus", "Caught error");
|
|
|
|
log.error("prometheus", e);
|
|
|
|
}
|
2021-07-28 00:52:31 +08:00
|
|
|
|
2024-04-24 14:37:17 +08:00
|
|
|
try {
|
|
|
|
if (typeof heartbeat.ping === "number") {
|
2024-10-09 07:17:11 +08:00
|
|
|
monitorResponseTime.set(this.monitorLabelValues, heartbeat.ping);
|
2024-04-24 14:37:17 +08:00
|
|
|
} else {
|
|
|
|
// Is it good?
|
2024-10-09 07:17:11 +08:00
|
|
|
monitorResponseTime.set(this.monitorLabelValues, -1);
|
2024-04-24 14:37:17 +08:00
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
log.error("prometheus", "Caught error");
|
|
|
|
log.error("prometheus", e);
|
2021-07-28 00:52:31 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-11 09:46:41 +02:00
|
|
|
/**
|
|
|
|
* Remove monitor from prometheus
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
2022-01-07 11:57:24 +08:00
|
|
|
remove() {
|
|
|
|
try {
|
2024-10-09 07:17:11 +08:00
|
|
|
monitorCertDaysRemaining.remove(this.monitorLabelValues);
|
|
|
|
monitorCertIsValid.remove(this.monitorLabelValues);
|
2025-01-08 12:30:18 +01:00
|
|
|
monitorUptime1y.remove(this.monitorLabelValues);
|
|
|
|
monitorUptime30d.remove(this.monitorLabelValues);
|
|
|
|
monitorUptime24h.remove(this.monitorLabelValues);
|
|
|
|
monitorAverageResponseTime.remove(this.monitorLabelValues);
|
2024-10-09 07:17:11 +08:00
|
|
|
monitorResponseTime.remove(this.monitorLabelValues);
|
|
|
|
monitorStatus.remove(this.monitorLabelValues);
|
2022-01-07 11:57:24 +08:00
|
|
|
} catch (e) {
|
|
|
|
console.error(e);
|
|
|
|
}
|
|
|
|
}
|
2021-07-28 00:52:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
Prometheus
|
2021-10-10 16:37:53 +08:00
|
|
|
};
|