Fixed the metrics for the push type.

This commit is contained in:
Ruben 2022-12-28 10:37:25 +01:00
parent 9fe9e235ca
commit 9404efd86d
No known key found for this signature in database
GPG Key ID: ACCC7C9BA9F27497

View File

@ -9,6 +9,7 @@ const StatusPage = require("../model/status_page");
const { UptimeKumaServer } = require("../uptime-kuma-server");
const { makeBadge } = require("badge-maker");
const { badgeConstants } = require("../config");
const { Prometheus } = require("../prometheus");
let router = express.Router();
@ -87,6 +88,7 @@ router.get("/api/push/:pushToken", async (request, response) => {
io.to(monitor.user_id).emit("heartbeat", bean.toJSON());
Monitor.sendStats(io, monitor.id, monitor.user_id);
new Prometheus(monitor).update(bean, undefined);
response.json({
ok: true,