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: libraries/microsoft-agents-a365-observability-extensions-langchain/microsoft_agents_a365/observability/extensions/langchain/tracer.py
+13-16Lines changed: 13 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -84,14 +84,15 @@ def __init__(
84
84
*args: Any,
85
85
**kwargs: Any,
86
86
) ->None:
87
-
"""Initialize the OpenInferenceTracer.
87
+
"""Initialize the CustomLangChainTracer.
88
88
89
89
Args:
90
-
tracer (trace_api.Tracer): The OpenTelemetry tracer for creating spans.
91
-
separate_trace_from_runtime_context (bool): When True, always start a new trace for each
92
-
span without a parent, isolating it from any existing trace in the runtime context.
93
-
*args (Any): Positional arguments for BaseTracer.
94
-
**kwargs (Any): Keyword arguments for BaseTracer.
90
+
tracer: The OpenTelemetry tracer for creating spans.
91
+
separate_trace_from_runtime_context: When True, always start a new
92
+
trace for each span without a parent, isolating it from any
93
+
existing trace in the runtime context.
94
+
*args: Positional arguments forwarded to BaseTracer.
95
+
**kwargs: Keyword arguments forwarded to BaseTracer.
0 commit comments