Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix(profiling-node): Ensure profileId is added to transaction event
  • Loading branch information
Lms24 committed Dec 12, 2024
commit 86b3e5a61038f8cd659a830fc89b799ade5f2ab4
2 changes: 1 addition & 1 deletion packages/profiling-node/src/integration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ function setupAutomatedSpanProfiling(client: NodeClient): void {
// Unref timeout so it doesn't keep the process alive.
timeout.unref();

getCurrentScope().setContext('profile', { profile_id });
getIsolationScope().setContext('profile', { profile_id });
spanToProfileIdMap.set(span, profile_id);
}
});
Expand Down
Loading