UNPKG

@sentry/node

Version:

Sentry Node SDK using OpenTelemetry for performance instrumentation

144 lines (123 loc) 5.26 kB
import { trace, propagation, context } from '@opentelemetry/api'; import { defaultResource, resourceFromAttributes } from '@opentelemetry/resources'; import { BasicTracerProvider } from '@opentelemetry/sdk-trace-base'; import { ATTR_SERVICE_VERSION, SEMRESATTRS_SERVICE_NAMESPACE, ATTR_SERVICE_NAME } from '@opentelemetry/semantic-conventions'; import { SDK_VERSION, debug, GLOBAL_OBJ, consoleSandbox } from '@sentry/core'; import { setupOpenTelemetryLogger, SentryContextManager, isCjs } from '@sentry/node-core'; import { SentrySpanProcessor, SentrySampler, SentryPropagator } from '@sentry/opentelemetry'; import { createAddHookMessageChannel } from 'import-in-the-middle'; import moduleModule from 'module'; import { DEBUG_BUILD } from '../debug-build.js'; import { getOpenTelemetryInstrumentationToPreload } from '../integrations/tracing/index.js'; // About 277h - this must fit into new Array(len)! const MAX_MAX_SPAN_WAIT_DURATION = 1000000; /** * Initialize OpenTelemetry for Node. */ function initOpenTelemetry(client, options = {}) { if (client.getOptions().debug) { setupOpenTelemetryLogger(); } const provider = setupOtel(client, options); client.traceProvider = provider; } /** Initialize the ESM loader. */ function maybeInitializeEsmLoader() { const [nodeMajor = 0, nodeMinor = 0] = process.versions.node.split('.').map(Number); // Register hook was added in v20.6.0 and v18.19.0 if (nodeMajor >= 21 || (nodeMajor === 20 && nodeMinor >= 6) || (nodeMajor === 18 && nodeMinor >= 19)) { if (!GLOBAL_OBJ._sentryEsmLoaderHookRegistered) { try { const { addHookMessagePort } = createAddHookMessageChannel(); // @ts-expect-error register is available in these versions moduleModule.register('import-in-the-middle/hook.mjs', import.meta.url, { data: { addHookMessagePort, include: [] }, transferList: [addHookMessagePort], }); } catch (error) { debug.warn('Failed to register ESM hook', error); } } } else { consoleSandbox(() => { // eslint-disable-next-line no-console console.warn( `[Sentry] You are using Node.js v${process.versions.node} in ESM mode ("import syntax"). The Sentry Node.js SDK is not compatible with ESM in Node.js versions before 18.19.0 or before 20.6.0. Please either build your application with CommonJS ("require() syntax"), or upgrade your Node.js version.`, ); }); } } /** * Preload OpenTelemetry for Node. * This can be used to preload instrumentation early, but set up Sentry later. * By preloading the OTEL instrumentation wrapping still happens early enough that everything works. */ function preloadOpenTelemetry(options = {}) { const { debug: debug$1 } = options; if (debug$1) { debug.enable(); } if (!isCjs()) { maybeInitializeEsmLoader(); } // These are all integrations that we need to pre-load to ensure they are set up before any other code runs getPreloadMethods(options.integrations).forEach(fn => { fn(); if (debug$1) { debug.log(`[Sentry] Preloaded ${fn.id} instrumentation`); } }); } function getPreloadMethods(integrationNames) { const instruments = getOpenTelemetryInstrumentationToPreload(); if (!integrationNames) { return instruments; } return instruments.filter(instrumentation => integrationNames.includes(instrumentation.id)); } /** Just exported for tests. */ function setupOtel(client, options = {}) { // Create and configure NodeTracerProvider const provider = new BasicTracerProvider({ sampler: new SentrySampler(client), resource: defaultResource().merge( resourceFromAttributes({ [ATTR_SERVICE_NAME]: 'node', // eslint-disable-next-line deprecation/deprecation [SEMRESATTRS_SERVICE_NAMESPACE]: 'sentry', [ATTR_SERVICE_VERSION]: SDK_VERSION, }), ), forceFlushTimeoutMillis: 500, spanProcessors: [ new SentrySpanProcessor({ timeout: _clampSpanProcessorTimeout(client.getOptions().maxSpanWaitDuration), }), ...(options.spanProcessors || []), ], }); // Register as globals trace.setGlobalTracerProvider(provider); propagation.setGlobalPropagator(new SentryPropagator()); context.setGlobalContextManager(new SentryContextManager()); return provider; } /** Just exported for tests. */ function _clampSpanProcessorTimeout(maxSpanWaitDuration) { if (maxSpanWaitDuration == null) { return undefined; } // We guard for a max. value here, because we create an array with this length // So if this value is too large, this would fail if (maxSpanWaitDuration > MAX_MAX_SPAN_WAIT_DURATION) { DEBUG_BUILD && debug.warn(`\`maxSpanWaitDuration\` is too high, using the maximum value of ${MAX_MAX_SPAN_WAIT_DURATION}`); return MAX_MAX_SPAN_WAIT_DURATION; } else if (maxSpanWaitDuration <= 0 || Number.isNaN(maxSpanWaitDuration)) { DEBUG_BUILD && debug.warn('`maxSpanWaitDuration` must be a positive number, using default value instead.'); return undefined; } return maxSpanWaitDuration; } export { _clampSpanProcessorTimeout, initOpenTelemetry, maybeInitializeEsmLoader, preloadOpenTelemetry, setupOtel }; //# sourceMappingURL=initOtel.js.map