We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We require two attributes on certain spans for the Next.js insights page:
sentry.nextjs.function.type
"Page"
"Layout"
"generateMetadata"
sentry.nextjs.function.route
"/foo/bar/[id]/page"
"/foo/bar/[id]/layout
The spans that should have these attributes are the default export functions for Page, Layout, etc. files, and all generation functions.
This probably just involves taking spans emitted by Next.js and transforming them to have the right attributes.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
We require two attributes on certain spans for the Next.js insights page:
sentry.nextjs.function.type
(for example"Page"
,"Layout"
,"generateMetadata"
)sentry.nextjs.function.route
(for example"/foo/bar/[id]/page"
or"/foo/bar/[id]/layout
)The spans that should have these attributes are the default export functions for Page, Layout, etc. files, and all generation functions.
This probably just involves taking spans emitted by Next.js and transforming them to have the right attributes.
The text was updated successfully, but these errors were encountered: