Observability for Vercel AI SDK with Opik
Setup
The AI SDK supports tracing via OpenTelemetry. With the OpikExporter you can collect these traces in Opik.
While telemetry is experimental (docs), you can enable it by setting experimental_telemetry on each request that you want to trace.
To collect the traces in Opik, you need to add the OpikExporter to your application, first you have to set your environment variables
Now you need to register this exporter via the OpenTelemetry SDK.
Next.js
Next.js has support for OpenTelemetry instrumentation on the framework level. Learn more about it in the Next.js OpenTelemetry guide.
Install dependencies:
Add OpikExporter to your instrumentation file:
Node.js
Install dependencies:
Done! All traces that contain AI SDK spans are automatically captured in Opik.
Configuration
Custom Tags and Metadata
You can add custom tags and metadata to all traces generated by the OpikExporter:
Tags are useful for filtering and grouping traces, while metadata adds additional context that can be valuable for debugging and analysis. The threadId parameter is useful for tracking multi-turn conversations or grouping related AI interactions.
Pass Custom Trace name
Thread ID Support
You can associate traces with conversation threads by setting the threadId parameter. This is useful for tracking multi-turn conversations or grouping related AI interactions.
Set threadId per request via telemetry metadata (this overrides any exporter-level threadId):
Debugging
Use the logger level to see the more verbose logs of the exporter.