Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
72 lines
2.5 KiB
Plaintext
72 lines
2.5 KiB
Plaintext
import { defineIntegration } from '@sentry/core';
|
|
import { generateInstrumentOnce } from '../../otel/instrument.js';
|
|
import { httpServerIntegration } from './httpServerIntegration.js';
|
|
import { httpServerSpansIntegration } from './httpServerSpansIntegration.js';
|
|
import { SentryHttpInstrumentation } from './SentryHttpInstrumentation.js';
|
|
|
|
const INTEGRATION_NAME = 'Http';
|
|
|
|
const instrumentSentryHttp = generateInstrumentOnce(
|
|
`${INTEGRATION_NAME}.sentry`,
|
|
options => {
|
|
return new SentryHttpInstrumentation(options);
|
|
},
|
|
);
|
|
|
|
/**
|
|
* The http integration instruments Node's internal http and https modules.
|
|
* It creates breadcrumbs for outgoing HTTP requests which will be attached to the currently active span.
|
|
*/
|
|
const httpIntegration = defineIntegration((options = {}) => {
|
|
const serverOptions = {
|
|
sessions: options.trackIncomingRequestsAsSessions,
|
|
sessionFlushingDelayMS: options.sessionFlushingDelayMS,
|
|
ignoreRequestBody: options.ignoreIncomingRequestBody,
|
|
maxRequestBodySize: options.maxIncomingRequestBodySize,
|
|
};
|
|
|
|
const serverSpansOptions = {
|
|
ignoreIncomingRequests: options.ignoreIncomingRequests,
|
|
ignoreStaticAssets: options.ignoreStaticAssets,
|
|
ignoreStatusCodes: options.dropSpansForIncomingRequestStatusCodes,
|
|
};
|
|
|
|
const httpInstrumentationOptions = {
|
|
breadcrumbs: options.breadcrumbs,
|
|
propagateTraceInOutgoingRequests: true,
|
|
ignoreOutgoingRequests: options.ignoreOutgoingRequests,
|
|
};
|
|
|
|
const server = httpServerIntegration(serverOptions);
|
|
const serverSpans = httpServerSpansIntegration(serverSpansOptions);
|
|
|
|
// In node-core, for now we disable incoming requests spans by default
|
|
// we may revisit this in a future release
|
|
const spans = options.spans ?? false;
|
|
const disableIncomingRequestSpans = options.disableIncomingRequestSpans ?? false;
|
|
const enabledServerSpans = spans && !disableIncomingRequestSpans;
|
|
|
|
return {
|
|
name: INTEGRATION_NAME,
|
|
setup(client) {
|
|
if (enabledServerSpans) {
|
|
serverSpans.setup(client);
|
|
}
|
|
},
|
|
setupOnce() {
|
|
server.setupOnce();
|
|
|
|
instrumentSentryHttp(httpInstrumentationOptions);
|
|
},
|
|
|
|
processEvent(event) {
|
|
// Note: We always run this, even if spans are disabled
|
|
// The reason being that e.g. the remix integration disables span creation here but still wants to use the ignore status codes option
|
|
return serverSpans.processEvent(event);
|
|
},
|
|
};
|
|
});
|
|
|
|
export { httpIntegration, instrumentSentryHttp };
|
|
//# sourceMappingURL=index.js.map
|