All recipes
Nuxt.
CodeNitro pluginVue
Add a Nitro plugin under `server/plugins/`. The SDK initializes once when the Nuxt server starts and instruments every outbound `$fetch` call automatically.
1. Install.
Bash
npm install @checkupstream/sdk2. Add the Nitro plugin.
server/plugins/checkupstream.ts
import { defineCheckUpstreamPlugin } from "@checkupstream/sdk/integrations/nuxt";
export default defineCheckUpstreamPlugin({
sdkKey: process.env.CHECKUPSTREAM_SDK_KEY!,
});Note
Nuxt scans `server/plugins/` automatically — no entry-point edits needed. To configure explicitly without the helper, call `initCheckUpstream()` from any Nitro plugin file.
Ship reliable upstream.
Drop the SDK in, point it at your project key, and start seeing live upstream telemetry inside the dashboard.