feat: initialize otel collector (#989)

This commit is contained in:
Jeremy 2025-05-07 21:43:19 -07:00 committed by GitHub
parent 75af1320f4
commit 35395969cd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 100 additions and 1 deletions

5
instrumentation.ts Normal file
View file

@ -0,0 +1,5 @@
import { registerOTel } from '@vercel/otel';
export function register() {
registerOTel({ serviceName: 'ai-chatbot' });
}