Spaces:
Running
Running
File size: 240 Bytes
5012205 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import { registerOTel } from '@vercel/otel'
export function register() {
registerOTel({
serviceName: 'next-app',
instrumentations: [
{
name: 'ai-instrumentation',
include: [/^\/api\/ai/]
}
]
})
} |