blob: b9ed2c703020495a6d919673ecdc431cdeeba13c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
import { prometheus } from "@hono/prometheus";
import { Counter, Registry } from "prom-client";
const registry = new Registry();
export const { printMetrics } = prometheus({
registry: registry,
prefix: "karakeep_",
collectDefaultMetrics: true,
});
export const workerStatsCounter = new Counter({
name: "karakeep_worker_stats",
help: "Stats for each worker",
labelNames: ["worker_name", "status"],
});
registry.registerMetric(workerStatsCounter);
|