You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: instrumentation-genai/opentelemetry-instrumentation-weaviate/src/opentelemetry/instrumentation/weaviate/wrapper.py
+38-7Lines changed: 38 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -40,6 +40,13 @@
40
40
parse_url_to_host_port,
41
41
)
42
42
43
+
# GenAI context attributes to propagate from parent agent/workflow spans
44
+
_GENAI_PROPAGATE_ATTRS= (
45
+
"gen_ai.agent.name",
46
+
"gen_ai.agent.id",
47
+
"gen_ai.workflow.name",
48
+
)
49
+
43
50
44
51
# Context variable for passing connection info within operation call stacks
0 commit comments