@sentry/browser
Version:
Official Sentry SDK for browsers
62 lines (58 loc) • 2.1 kB
JavaScript
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
const browser = require('@sentry/core/browser');
const browserUtils = require('@sentry-internal/browser-utils');
const debugBuild = require('../debug-build.js');
const INTEGRATION_NAME = "SpotlightBrowser";
const SPOTLIGHT_IGNORE_SPANS = [{ op: "ui.interaction.click", name: "#sentry-spotlight" }];
const _spotlightIntegration = ((options = {}) => {
const sidecarUrl = options.sidecarUrl || "http://localhost:8969/stream";
return {
name: INTEGRATION_NAME,
setup: () => {
debugBuild.DEBUG_BUILD && browser.debug.log("Using Sidecar URL", sidecarUrl);
},
beforeSetup(client) {
const opts = client.getOptions();
opts.ignoreSpans = [...opts.ignoreSpans || [], ...SPOTLIGHT_IGNORE_SPANS];
},
afterAllSetup: (client) => {
setupSidecarForwarding(client, sidecarUrl);
}
};
});
function setupSidecarForwarding(client, sidecarUrl) {
const makeFetch = browserUtils.getNativeImplementation("fetch");
let failCount = 0;
client.on("beforeEnvelope", (envelope) => {
if (failCount > 3) {
browser.debug.warn("[Spotlight] Disabled Sentry -> Spotlight integration due to too many failed requests:", failCount);
return;
}
makeFetch(sidecarUrl, {
method: "POST",
body: browser.serializeEnvelope(envelope),
headers: {
"Content-Type": "application/x-sentry-envelope"
},
mode: "cors"
}).then(
(res) => {
if (res.status >= 200 && res.status < 400) {
failCount = 0;
}
},
(err) => {
failCount++;
browser.debug.error(
"Sentry SDK can't connect to Sidecar is it running? See: https://spotlightjs.com/sidecar/npx/",
err
);
}
);
});
}
const spotlightBrowserIntegration = browser.defineIntegration(_spotlightIntegration);
exports.INTEGRATION_NAME = INTEGRATION_NAME;
exports.SPOTLIGHT_IGNORE_SPANS = SPOTLIGHT_IGNORE_SPANS;
exports.spotlightBrowserIntegration = spotlightBrowserIntegration;
//# sourceMappingURL=spotlight.js.map