Hey!
I’m one of the developers developing an app in React. We are having issues because although our number of events isn’t too high, most of them are getting rejected by sentry.
As you can see from the image, we aren’t going over quota and it isn’t spike protection.
Right now we’re running on the github education plan, with 5,000,000 errors available. Is there some limiting factor using this plan?
What could be causing it?
Here’s our Sentry.init:
Sentry.init({ dsn: 'DSN Here', beforeSend(event) { // Check if it is an exception, and if so, show the report dialog if (event.exception) { Sentry.showReportDialog({ eventId: event.event_id }); } return event; }, integrations: [ new SentryRRWeb({ // ...options }), new Integrations.BrowserTracing(), ], ignoreErrors: [ // Random plugins/extensions "top.GLOBALS", "originalCreateNotification", "canvas.contentDocument", "MyApp_RemoveAllHighlights", "http://tt.epicplay.com", "Can't find variable: ZiteReader", "jigsaw is not defined", "ComboSearch is not defined", "Omitted because its a url", "atomicFindClose", // Facebook borked "fb_xd_fragment", "bmi_SafeAddOnload", "EBCallBackMessageReceived", "conduitPage", ], denyUrls: [ // Facebook flakiness /graph\.facebook\.com/i, // Facebook blocked /connect\.facebook\.net\/en_US\/all\.js/i, // Woopra flakiness /eatdifferent\.com\.woopra-ns\.com/i, /static\.woopra\.com\/js\/woopra\.js/i, // Chrome extensions /extensions\//i, /^chrome:\/\//i, // Other plugins /127\.0\.0\.1:4001\/isrunning/i, // Cacaoweb /webappstoolbarba\.texthelp\.com\//i, /metrics\.itunes\.apple\.com\.edgesuite\.net\//i, ], release: `gatego@${process.env['REACT_APP_VERSION']}`, tracesSampleRate: 0.5, });
Thanks!