We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e75465 commit 5362333Copy full SHA for 5362333
packages/nuxt/src/runtime/hooks/updateRouteBeforeResponse.ts
@@ -36,7 +36,8 @@ export function updateRouteBeforeResponse(event: H3Event): void {
36
37
if (params && typeof params === 'object') {
38
Object.entries(params).forEach(([key, value]) => {
39
- rootSpan.setAttribute(`params.${key}`, String(value));
+ // Based on this convention: https://getsentry.github.io/sentry-conventions/generated/attributes/url.html#urlpathparameterkey
40
+ rootSpan.setAttribute(`url.path.parameter.${key}`, String(value));
41
});
42
}
43
0 commit comments