[JS, VUE] fallback when ERR_CONNECTION_REFUSED https://sentry.io/api/

Hi there :slight_smile:
Is there any option to provide a fallback when sentry can’t connect to servers ?
One of our test users somehow created such error [net::ERR_CONNECTION_REFUSED]

So i’d like to create some local fallback to log errors which has’t been sent to sentry.io servers.

So there is no super easy way for this.
We hid this on purpose because we are using different transports in the background, one of which is Beacon Transport which does not return anything, it’s fire and forget.

So in order to know when a request failed you would need to create you own Transport.
see https://codesandbox.io/s/8z4o9yvl6j

Hope this helps.