You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(webapp): report full route path on Remix request spans
The @sentry/remix OpenTelemetry instrumentation sets each request span's
name and http.route from only the matched leaf route's own path segment.
For nested routes that made distinct pages collapse to one ambiguous
segment (e.g. ":runParam"), so traces could not tell which route served
a request.
Reconstruct the full matched path by joining every segment in the match
chain, falling back to the leaf path. Flat routes such as
"api/v1/tasks/:taskId/trigger" are unchanged; nested routes now carry
their full URL pattern. Applied to both the CJS and ESM builds via the
existing pnpm patch.
0 commit comments