upd / src /routes /metrics.ts
cursorpro's picture
Upload 57 files
7a4c980 verified
raw
history blame contribute delete
249 Bytes
import { Hono } from "hono";
const metrics = new Hono();
metrics.get("/", async (c) => {
return new Response(await c.get("metrics")?.register.metrics(), {
headers: { "Content-Type": "text/plain" },
});
});
export default metrics;