import type { NitroAppPlugin } from "nitro/types"; /** * Built-in telemetry sink that renders each request's tracing-channel spans as a * console timeline (waterfall), enabled via `experimental.tracingLogger`. A * dependency-free, platform-agnostic alternative to a vendor sink (e.g. the * Vercel exporter) — useful for local development and seeing what Nitro spends * time on per request. * * Spans are grouped per request via async context: a collector is seeded on the * `request` hook (which runs inside the request's async context, in every * environment), so each nested operation (routing, storage, …) lands in that * request's collector, isolated from other in-flight requests. The timeline is * flushed on the `response` hook. */ declare const plugin: NitroAppPlugin; export default plugin;