Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Get your first trace into bryel in a couple of minutes.
Get an API key
bk_…
BRYEL_KEY
Install the SDK
npm i @bryel/vercel @vercel/otel
Register the processor
instrumentation.ts
import { registerOTel } from "@vercel/otel"; import { bryelVercelProcessor } from "@bryel/vercel"; export function register() { registerOTel({ serviceName: "my-app", spanProcessors: [bryelVercelProcessor({ apiKey: process.env.BRYEL_KEY! })], }); }
Enable telemetry per call
const result = streamText({ model: openai("gpt-5"), prompt, experimental_telemetry: { isEnabled: true, metadata: { sessionId, userId }, // groups a conversation in bryel }, });
See it in bryel