mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-30 18:24:03 +00:00
Add labels to metrics for querying
This commit is contained in:
parent
96242dce0d
commit
3dcbae0889
1 changed files with 24 additions and 4 deletions
|
@ -13,12 +13,24 @@ const {Notification} = require("../notification")
|
||||||
const monitor_response_time = new Prometheus.Gauge({
|
const monitor_response_time = new Prometheus.Gauge({
|
||||||
name: 'monitor_response_time',
|
name: 'monitor_response_time',
|
||||||
help: 'Monitor Response Time (ms)',
|
help: 'Monitor Response Time (ms)',
|
||||||
labelNames: ['monitor_name']
|
labelNames: [
|
||||||
|
'monitor_name',
|
||||||
|
'monitor_type',
|
||||||
|
'monitor_url',
|
||||||
|
'monitor_hostname',
|
||||||
|
'monitor_port'
|
||||||
|
]
|
||||||
});
|
});
|
||||||
const monitor_status = new Prometheus.Gauge({
|
const monitor_status = new Prometheus.Gauge({
|
||||||
name: 'montor_status',
|
name: 'montor_status',
|
||||||
help: 'Monitor Status (1 = UP, 0= DOWN)',
|
help: 'Monitor Status (1 = UP, 0= DOWN)',
|
||||||
labelNames: ['monitor_name']
|
labelNames: [
|
||||||
|
'monitor_name',
|
||||||
|
'monitor_type',
|
||||||
|
'monitor_url',
|
||||||
|
'monitor_hostname',
|
||||||
|
'monitor_port'
|
||||||
|
]
|
||||||
});
|
});
|
||||||
/**
|
/**
|
||||||
* status:
|
* status:
|
||||||
|
@ -155,7 +167,11 @@ class Monitor extends BeanModel {
|
||||||
|
|
||||||
|
|
||||||
monitor_status.set({
|
monitor_status.set({
|
||||||
monitor_name: this.name
|
monitor_name: this.name,
|
||||||
|
monitor_type: this.type,
|
||||||
|
monitor_url: this.url,
|
||||||
|
monitor_hostname: this.hostname,
|
||||||
|
monitor_port: this.port
|
||||||
}, bean.status)
|
}, bean.status)
|
||||||
|
|
||||||
if (bean.status === 1) {
|
if (bean.status === 1) {
|
||||||
|
@ -165,7 +181,11 @@ class Monitor extends BeanModel {
|
||||||
}
|
}
|
||||||
|
|
||||||
monitor_response_time.set({
|
monitor_response_time.set({
|
||||||
monitor_name: this.name
|
monitor_name: this.name,
|
||||||
|
monitor_type: this.type,
|
||||||
|
monitor_url: this.url,
|
||||||
|
monitor_hostname: this.hostname,
|
||||||
|
monitor_port: this.port
|
||||||
}, bean.ping)
|
}, bean.ping)
|
||||||
|
|
||||||
io.to(this.user_id).emit("heartbeat", bean.toJSON());
|
io.to(this.user_id).emit("heartbeat", bean.toJSON());
|
||||||
|
|
Loading…
Reference in a new issue