-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
feat(server-utils): Add lru-memoizer diagnostics-channel integration #21786
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
+182
−42
Merged
Changes from 2 commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
86b7148
add integration tests
nicohrubec 783398f
feat(node): Add diagnostics-channel instrumentation for lru-memoizer
nicohrubec d14c87d
ref(server-utils): Capture full scope via withScope in lru-memoizer c…
nicohrubec 359ded6
update comment
nicohrubec File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
17 changes: 17 additions & 0 deletions
17
dev-packages/node-integration-tests/suites/tracing/lru-memoizer/instrument-orchestrion.mjs
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| // Opting in via `experimentalUseDiagnosticsChannelInjection()` (before `init`) | ||
| // is all that's needed. | ||
| // | ||
| // `Sentry.init()` swaps the OTel `lru-memoizer` instrumentation | ||
| // for the diagnostics-channel one and synchronously | ||
| // installs the module hooks that inject the channels. | ||
| import * as Sentry from '@sentry/node'; | ||
| import { loggingTransport } from '@sentry-internal/node-integration-tests'; | ||
|
|
||
| Sentry.experimentalUseDiagnosticsChannelInjection(); | ||
|
|
||
| Sentry.init({ | ||
| dsn: 'https://public@dsn.ingest.sentry.io/1337', | ||
| release: '1.0', | ||
| tracesSampleRate: 1.0, | ||
| transport: loggingTransport, | ||
| }); |
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
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
65 changes: 65 additions & 0 deletions
65
packages/server-utils/src/integrations/tracing-channel/lru-memoizer.ts
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,65 @@ | ||
| import * as diagnosticsChannel from 'node:diagnostics_channel'; | ||
| import type { IntegrationFn } from '@sentry/core'; | ||
| import { debug, defineIntegration, getActiveSpan, withActiveSpan } from '@sentry/core'; | ||
| import { DEBUG_BUILD } from '../../debug-build'; | ||
| import { CHANNELS } from '../../orchestrion/channels'; | ||
|
|
||
| // Same name as the OTel integration by design — when enabled, the OTel | ||
| // 'LruMemoizer' integration is omitted from the default set. | ||
| const INTEGRATION_NAME = 'LruMemoizer'; | ||
|
|
||
| interface LruMemoizerChannelContext { | ||
| arguments: unknown[]; | ||
| } | ||
|
|
||
| const _lruMemoizerChannelIntegration = (() => { | ||
| return { | ||
| name: INTEGRATION_NAME, | ||
| setupOnce() { | ||
| // `tracingChannel` is unavailable before Node 18.19 — no-op instead of throwing (#21783). | ||
| if (!diagnosticsChannel.tracingChannel) { | ||
| return; | ||
| } | ||
|
nicohrubec marked this conversation as resolved.
|
||
|
|
||
| DEBUG_BUILD && debug.log(`[orchestrion:lru-memoizer] subscribing to channel "${CHANNELS.LRU_MEMOIZER_LOAD}"`); | ||
| const lruMemoizerCh = diagnosticsChannel.tracingChannel(CHANNELS.LRU_MEMOIZER_LOAD); | ||
|
|
||
| lruMemoizerCh.subscribe({ | ||
|
nicohrubec marked this conversation as resolved.
|
||
| // lru-memoizer queues the callback and fires it later via setImmediate, from a | ||
| // different async context. Rebind it to the caller's active span (still correct | ||
| // here, synchronously inside the memoized call) so nested spans parent correctly. | ||
| // This is the channel equivalent of the OTel version's `context.bind(context.active(), cb)`. | ||
| // orchestrion (kind: 'Callback') has already spliced its own wrapper into the last | ||
| // arg by the time `start` fires, and only publishes `start` when that arg is a function. | ||
| start(rawCtx) { | ||
| const ctx = rawCtx as LruMemoizerChannelContext; | ||
| const parentSpan = getActiveSpan(); | ||
| if (!parentSpan || ctx.arguments.length === 0) { | ||
| return; | ||
| } | ||
| const cbIdx = ctx.arguments.length - 1; | ||
| const orchestrionWrappedCb = ctx.arguments[cbIdx]; | ||
| if (typeof orchestrionWrappedCb !== 'function') { | ||
| return; | ||
| } | ||
| const wrapped = orchestrionWrappedCb as (...a: unknown[]) => unknown; | ||
| ctx.arguments[cbIdx] = function (this: unknown, ...args: unknown[]): unknown { | ||
| return withActiveSpan(parentSpan, () => wrapped.apply(this, args)); | ||
|
sentry[bot] marked this conversation as resolved.
Outdated
|
||
| }; | ||
|
nicohrubec marked this conversation as resolved.
|
||
| }, | ||
| end() {}, | ||
| asyncStart() {}, | ||
| asyncEnd() {}, | ||
| error() {}, | ||
| }); | ||
| }, | ||
| }; | ||
| }) satisfies IntegrationFn; | ||
|
|
||
| /** | ||
| * EXPERIMENTAL — orchestrion-driven lru-memoizer integration. Subscribes to | ||
| * `orchestrion:lru-memoizer:load` (injected into `lru-memoizer/lib/async.js`'s | ||
| * `memoizedFunction`). Creates no spans; only rebinds the memoized callback to the | ||
| * caller's active span. Requires the orchestrion runtime hook or bundler plugin. | ||
| */ | ||
| export const lruMemoizerChannelIntegration = defineIntegration(_lruMemoizerChannelIntegration); | ||
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1,3 @@ | ||
| export { detectOrchestrionSetup } from './detect'; | ||
| export { mysqlChannelIntegration } from '../integrations/tracing-channel/mysql'; | ||
| export { lruMemoizerChannelIntegration } from '../integrations/tracing-channel/lru-memoizer'; |
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Opt-in drops older lru-memoizer
Medium Severity
Calling
experimentalUseDiagnosticsChannelInjection()removes the OpenTelemetryLruMemoizerintegration, but orchestrion injection only targetslru-memoizer>=2.1.0. Apps on1.3.x–2.0.xthat opt in lose callback context binding with no channel replacement.Additional Locations (1)
packages/server-utils/src/orchestrion/config.ts#L35-L39Reviewed by Cursor Bugbot for commit 783398f. Configure here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<2.1.0is barely used anymore so I think this should be fine: https://www.npmjs.com/package/lru-memoizer?activeTab=versions