aboutsummaryrefslogtreecommitdiffstats
path: root/apps/workers/metrics.ts
blob: 04eec1fb9bf005a50946bfebb37c0c961da75ed4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import { prometheus } from "@hono/prometheus";
import { Counter, Registry } from "prom-client";

const registry = new Registry();

export const { printMetrics } = prometheus({
  registry: registry,
  prefix: "karakeep_",
});

export const workerStatsCounter = new Counter({
  name: "karakeep_worker_stats",
  help: "Stats for each worker",
  labelNames: ["worker_name", "status"],
});

registry.registerMetric(workerStatsCounter);