OTEL_DENO=true deno run --unstable-otel -A main.ts
import { Hono } from 'hono' const app = new Hono() app.get('/', (c) => { console.log("Test") return c.text('Hello Hono') }) app.get('/internal-health-check', (c) => c.text('ok')) Deno.serve(app.fetch)
Listening on http://0.0.0.0:8000/ (http://localhost:8000/) Test