communication
observability
ai_generated
true
Sentry events silently dropped — rate limit or quota exceeded
ID: communication/sentry-event-dropped-rate-limit
85%Fix Rate
88%Confidence
4Evidence
2023-01-01First Seen
Version Compatibility
| Version | Status | Introduced | Deprecated | Notes |
|---|---|---|---|---|
| any | active | — | — | — |
Root Cause
Sentry drops events silently when project rate limit or org quota is exceeded.
genericWorkarounds
-
92% success Configure beforeSend to filter out noisy, low-value errors
Sentry.init({beforeSend(event) { if (event.message?.match(/ResizeObserver/)) return null; }})Sources: https://docs.sentry.io/platforms/javascript/configuration/filtering/
-
88% success Set per-key rate limits and use inbound filters
Project Settings > Client Keys > Rate Limits + Inbound Filters
Sources: https://docs.sentry.io/product/accounts/quotas/manage-event-stream-guide/
Dead Ends
Common approaches that don't work:
-
Increase Sentry plan quota blindly
60% fail
The root cause is often noisy errors flooding the quota
-
Disable rate limiting on the Sentry project
75% fail
Without rate limits, a single noisy error can consume the entire org quota