We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef004da commit 4069b08Copy full SHA for 4069b08
packages/core/src/integrations/conversationId.ts
@@ -19,10 +19,8 @@ const _conversationIdIntegration = (() => {
19
const conversationId = scopeData.conversationId || isolationScopeData.conversationId;
20
21
if (conversationId) {
22
- const { op } = spanToJSON(span);
23
-
24
// Only apply conversation ID to gen_ai spans
25
- if (!op?.startsWith('gen_ai.')) {
+ if (!spanToJSON(span).op?.startsWith('gen_ai.')) {
26
return;
27
}
28
0 commit comments