mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-06-01 11:22:34 +02:00
Merge 4a5fe2145c
into 839ead80cc
This commit is contained in:
commit
7a2a576bfe
2 changed files with 32 additions and 4 deletions
|
@ -346,7 +346,7 @@ class Monitor extends BeanModel {
|
||||||
let previousBeat = null;
|
let previousBeat = null;
|
||||||
let retries = 0;
|
let retries = 0;
|
||||||
|
|
||||||
this.prometheus = new Prometheus(this);
|
this.prometheus = new Prometheus(this, await this.getTags());
|
||||||
|
|
||||||
const beat = async () => {
|
const beat = async () => {
|
||||||
|
|
||||||
|
|
|
@ -7,6 +7,7 @@ const commonLabels = [
|
||||||
"monitor_url",
|
"monitor_url",
|
||||||
"monitor_hostname",
|
"monitor_hostname",
|
||||||
"monitor_port",
|
"monitor_port",
|
||||||
|
"monitor_tags"
|
||||||
];
|
];
|
||||||
|
|
||||||
const monitorCertDaysRemaining = new PrometheusClient.Gauge({
|
const monitorCertDaysRemaining = new PrometheusClient.Gauge({
|
||||||
|
@ -37,17 +38,45 @@ class Prometheus {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {object} monitor Monitor object to monitor
|
* @param {object} monitor Monitor object to monitor
|
||||||
|
* @param {Array<{name:string,value:?string}>} tags Tags to add to the monitor
|
||||||
*/
|
*/
|
||||||
constructor(monitor) {
|
constructor(monitor, tags) {
|
||||||
|
let filteredValidAsciiTags = this.filterValidAsciiTags(tags);
|
||||||
|
|
||||||
|
if (filteredValidAsciiTags.length <= 0) {
|
||||||
|
filteredValidAsciiTags = "null";
|
||||||
|
}
|
||||||
|
|
||||||
this.monitorLabelValues = {
|
this.monitorLabelValues = {
|
||||||
monitor_name: monitor.name,
|
monitor_name: monitor.name,
|
||||||
monitor_type: monitor.type,
|
monitor_type: monitor.type,
|
||||||
monitor_url: monitor.url,
|
monitor_url: monitor.url,
|
||||||
monitor_hostname: monitor.hostname,
|
monitor_hostname: monitor.hostname,
|
||||||
monitor_port: monitor.port
|
monitor_port: monitor.port,
|
||||||
|
monitor_tags: filteredValidAsciiTags
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Filter tags to remove the ones that contain non-ASCII characters
|
||||||
|
* See https://github.com/louislam/uptime-kuma/pull/4704#issuecomment-2366524692
|
||||||
|
* @param {Array<{name: string, value:?string}>} tags The tags to filter
|
||||||
|
* @returns {string[]} The filtered tags
|
||||||
|
*/
|
||||||
|
filterValidAsciiTags(tags) {
|
||||||
|
const asciiRegex = /^[a-zA-Z_][a-zA-Z0-9_]*$/;
|
||||||
|
return tags.reduce((filteredTags, tag) => {
|
||||||
|
if (asciiRegex.test(tag.name)) {
|
||||||
|
if (tag.value !== "" && asciiRegex.test(tag.value)) {
|
||||||
|
filteredTags.push(`${tag.name}:${tag.value}`);
|
||||||
|
} else {
|
||||||
|
filteredTags.push(tag.name);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return filteredTags;
|
||||||
|
}, []);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Update the metrics page
|
* Update the metrics page
|
||||||
* @param {object} heartbeat Heartbeat details
|
* @param {object} heartbeat Heartbeat details
|
||||||
|
@ -55,7 +84,6 @@ class Prometheus {
|
||||||
* @returns {void}
|
* @returns {void}
|
||||||
*/
|
*/
|
||||||
update(heartbeat, tlsInfo) {
|
update(heartbeat, tlsInfo) {
|
||||||
|
|
||||||
if (typeof tlsInfo !== "undefined") {
|
if (typeof tlsInfo !== "undefined") {
|
||||||
try {
|
try {
|
||||||
let isValid;
|
let isValid;
|
||||||
|
|
Loading…
Add table
Reference in a new issue