UNPKG

@sentry/node

Version:
24 lines (21 loc) 1.53 kB
import { Integrations } from '@sentry/core'; export { Hub, SDK_VERSION, Scope, addBreadcrumb, addEventProcessor, addGlobalEventProcessor, addIntegration, captureCheckIn, captureEvent, captureException, captureMessage, close, configureScope, continueTrace, createTransport, extractTraceparentData, flush, getActiveSpan, getActiveTransaction, getClient, getCurrentHub, getHubFromCarrier, lastEventId, makeMain, runWithAsyncContext, setContext, setExtra, setExtras, setMeasurement, setTag, setTags, setUser, spanStatusfromHttpCode, startActiveSpan, startInactiveSpan, startSpan, startSpanManual, startTransaction, trace, withMonitor, withScope } from '@sentry/core'; export { autoDiscoverNodePerformanceMonitoringIntegrations } from './tracing/index.js'; export { NodeClient } from './client.js'; export { makeNodeTransport } from './transports/http.js'; export { defaultIntegrations, defaultStackParser, getSentryRelease, init } from './sdk.js'; export { DEFAULT_USER_INCLUDES, addRequestDataToEvent, extractRequestData } from '@sentry/utils'; export { deepReadDirSync } from './utils.js'; export { getModuleFromFilename } from './module.js'; export { enableAnrDetection } from './anr/index.js'; import * as handlers from './handlers.js'; export { handlers as Handlers }; import * as index from './integrations/index.js'; import * as integrations from './tracing/integrations.js'; const INTEGRATIONS = { ...Integrations, ...index, ...integrations, }; export { INTEGRATIONS as Integrations }; //# sourceMappingURL=index.js.map