-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
@sentry/nextjs: captureException generates Event ID, but no Network Request visible & event not received by Sentry #15885
Labels
Package: nextjs
Issues related to the Sentry Nextjs SDK
Comments
Hi, thanks for writing in. Have you seen the troubleshooting page in the docs yet? https://docs.sentry.io/platforms/javascript/guides/nextjs/troubleshooting/#the-sdk-is-not-sending-any-data It has a section on what might be contributing to the SDK not sending data. |
Hi @lforst, thanks for the pointer! Yes, I reviewed that section and
confirmed the following based on our previous troubleshooting (detailed in
the main issue description):
*DSN Configuration:* Confirmed DSN is correct and loaded, as **performance
traces** *are* being successfully sent from this same Next.js application
and appear in the Sentry Traces UI.
*Environment Variables: *Confirmed variables (if used, or hardcoded DSN
during testing) are correctly accessible client-side, again evidenced by
Traces working.
*Ad-blockers:* Ruled out. Tested with extensions disabled, in Incognito
mode, and in a different browser. Furthermore, a **barebones HTML test**
using ***@***.***/browser` via CDN worked perfectly in the same browser
environment (details below and in the issue).
*(`debug: true`:)*This was enabled. The console logs clearly show `
*Sentry.captureException*` being called, a valid Event ID being generated,
and `Sentry.flush()` completing successfully. However, no transport-related
errors or logs indicating the event was added to the send queue appear for
the failed event in the Next.js app context.
*Stats/Quota:*Checked Usage History. No obvious quota limitations were hit
that would block only these client-side errors while allowing traces.
(Trial plan with infinite reserved errors).
*(`sideEffects: false`)* in `*package.json*`: Checked `package.json`, and
the `"sideEffects"` key is *not present*.
*Despite these checks, the core issue persists specifically for client-side
errors in the Next.js app:*
1. `Sentry.captureException` generates a valid Event ID in the browser
console.
2. No network request to the Sentry ingest endpoint appears in the
browser's Network tab.
3. The event cannot be found in Sentry Issues when searching by the
generated Event ID.
*Crucially:*
- Performance (Traces) from the same Next.js app *do* reach Sentry.
- A (Barebones HTML test) (using ***@***.***/browser` CDN script directly
in `sentry_test.html` loaded via `file:///`) works perfectly: Event ID
generated, network request visible with 200 status, and the event appears
in Sentry Issues.
This strongly suggests the problem is isolated to how ***@***.***/nextjs`
handles client-side `captureException` transport within the Next.js App
Router environment, as fundamental connectivity and SDK functionality seem
okay otherwise.
Happy to provide any further information or run additional tests.
…On Fri, Mar 28, 2025 at 3:19 AM Luca Forstner ***@***.***> wrote:
Hi, thanks for writing in. Have you seen the troubleshooting page in the
docs yet?
https://docs.sentry.io/platforms/javascript/guides/nextjs/troubleshooting/#the-sdk-is-not-sending-any-data
It has a section on what might be contributing to the SDK not sending data.
—
Reply to this email directly, view it on GitHub
<#15885 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/BO3DBLMJU2K6NFMZJAAIVSD2WTSYJAVCNFSM6AAAAABZ6F2H3WVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDONRQGQYTSNZVGM>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
[image: lforst]*lforst* left a comment (getsentry/sentry-javascript#15885)
<#15885 (comment)>
Hi, thanks for writing in. Have you seen the troubleshooting page in the
docs yet?
https://docs.sentry.io/platforms/javascript/guides/nextjs/troubleshooting/#the-sdk-is-not-sending-any-data
It has a section on what might be contributing to the SDK not sending data.
—
Reply to this email directly, view it on GitHub
<#15885 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/BO3DBLMJU2K6NFMZJAAIVSD2WTSYJAVCNFSM6AAAAABZ6F2H3WVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDONRQGQYTSNZVGM>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Can you check the stats page in sentry? |
# for free
to join this conversation on GitHub.
Already have an account?
# to comment
Is there an existing issue for this?
How do you use Sentry?
Sentry Saas (sentry.io)
Which SDK are you using?
@sentry/nextjs
SDK Version
9.9.0
Framework Version
14.0.4
Link to Sentry event
No response
Reproduction Example/SDK Setup
Steps to Reproduce
Expected Result
Actual Result
Additional Context / Key Findings from Troubleshooting:
Performance Monitoring Traces are successfully sent from the same application and appear correctly in the Sentry Traces UI.
Testing connectivity via curl from the command line on the same machine to the project's Sentry ingest endpoint succeeds (curl ... https://@/api//envelope/... returns 200 OK or 4xx).
System-level interference (browser extensions, hosts file, Windows Firewall, proxy settings) have been investigated and seem unlikely to be the cause.
A Barebones HTML Test using the Sentry CDN bundle (@sentry/browser) directly in an HTML file (loaded via file:///) works correctly: it generates an Event ID, the network request appears in DevTools with a 200 OK status, and the event appears in the Sentry Issues UI. This suggests the issue is specific to the @sentry/nextjs integration or its interaction within the Next.js environment.
The text was updated successfully, but these errors were encountered: