Skip to content
← Back to Changelog

Friday, February 16th 2024

@vercel/otel 1.3.0

Posted by

Avatar for dvoytenko

Dima Voytenko

Principal Engineer

Avatar for jj4

JJ Kasper

Software Engineer

Avatar for andrewgadzikvercel

Andrew Gadzik

Software Engineer

Avatar for gdborton

Gary Borton

Engineering Manager

Vercel and Next.js provide increased observability of your applications through OpenTelemetry.

instrumentation.ts
import { registerOTel } from '@vercel/otel';
export function register() {
registerOTel({ serviceName: 'acme-co' });
}
Using the Vercel OTEL package with Next.js.

v1.3.0 of @vercel/otel now providing custom resource and operation names for Datadog to satisfy their cardinality requirements. You can group related URL paths for a given span to reduce cardinality and associated usage.

For example, /products/hoodie can be mapped to /products/[name].

Learn more in our documentation or start using the package with Next.js.

Post