Send OpenTelemetry traces to Dynatrace and remove Vercel Analytics - #82
Merged
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Exports server-side traces to Dynatrace via OpenTelemetry, and removes Vercel Analytics now that Dynatrace RUM (#81) covers audience monitoring.
Changes
src/instrumentation.tsregistering OpenTelemetry through@vercel/otel, with an OTLP http/protobuf trace exporter pointed at the Dynatrace OTLP API — the format Dynatrace ingest requires (no gRPC, no JSON)@vercel/oteland its OpenTelemetry peer dependencies (yarn 1 does not install peers automatically)@vercel/analyticsand its usage in the root layoutConfiguration
Tracing activates only when both variables are set (in Vercel for production):
DYNATRACE_OTLP_ENDPOINT—https://{environment-id}.live.dynatrace.com/api/v2/otlpDYNATRACE_API_TOKEN— access token with theopenTelemetryTrace.ingestscope (server-side only, noNEXT_PUBLIC_prefix)When either is unset — locally, in CI —
register()returns early and no SDK is registered.Verification
POST …/v1/traceswithContent-Type: application/x-protobufand theApi-Tokenauthorization headeryarn buildand all functional Playwright tests pass; visual snapshots unaffected🤖 Generated with Claude Code
Generated by Claude Code