feat: add tracesSampler callback and integrations array to SentryConfig#5
Merged
feat: add tracesSampler callback and integrations array to SentryConfig#5
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds two new optional fields to
SentryConfigto unblock the backend monorepo migration from direct Sentry/Pyroscope initialization toobservability-js.tracesSampler— custom sampling callback invoked after the built-inignoredRoutescheck and before the defaultsampleRatefallback. Returnsnumber | undefined; returningundefinedfalls through tosampleRate. Enables the backend to suppress traces for specific customers (e.g. QAWolf test accounts) without patching the library.integrations— array of additional Sentry integrations spread after the hardcoded defaults (expressIntegration,nodeProfilingIntegration). Enables consumers to registerprismaIntegration(),rewriteFramesIntegration(), etc.Both fields flow unchanged through
resolveConfigintoResolvedConfig.sentry. Types are derived from the already-declared@sentry/nodedependency viaNodeOptionsutility types — no new imports or dependencies added.Also relaxes
engines.nodefrom>= 24to>= 20so the package installs cleanly on backends not yet on Node 24 (.nvmrcstays at 24 for local dev).Testing
5 new tests in
filtering.test.tscover the sampler composition logic:sampleRatewhen no custom sampler is providedsampleRateundefinedreturn falls through tosampleRateignoredRoutesshort-circuits before the custom sampler is called