mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
8 lines
228 B
TypeScript
8 lines
228 B
TypeScript
import client, { Metric } from 'prom-client'
|
|
|
|
const registry = new client.Registry()
|
|
|
|
export const registerMetric = (metric: Metric) =>
|
|
registry.registerMetric(metric)
|
|
|
|
export const getMetrics = async () => registry.metrics()
|