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
:param exporter_options: Agent365ExporterOptions instance for configuring the exporter.
76
-
If provided, exporter_options takes precedence. If exporter_options is None, the token_resolver and cluster_category parameters are used as fallback/legacy support to construct a default Agent365ExporterOptions instance.
77
-
:param suppress_invoke_agent_input: If True, suppress input messages for spans that are children of InvokeAgent spans.
79
+
:param exporter_options: Exporter configuration. Pass Agent365ExporterOptions for A365 API
80
+
export, SpectraExporterOptions for Spectra Collector sidecar export, or None (default)
81
+
to construct Agent365ExporterOptions from legacy parameters.
82
+
:param suppress_invoke_agent_input: If True, suppress input messages for InvokeAgent spans.
78
83
:return: True if configuration succeeded, False otherwise.
:param exporter_options: Agent365ExporterOptions instance for configuring the exporter.
265
-
If provided, exporter_options takes precedence. If exporter_options is None, the token_resolver and cluster_category parameters are used as fallback/legacy support to construct a default Agent365ExporterOptions instance.
288
+
:param exporter_options: Exporter configuration. Pass Agent365ExporterOptions for A365 API
289
+
export, SpectraExporterOptions for Spectra Collector sidecar export, or None (default)
290
+
to construct Agent365ExporterOptions from legacy parameters.
291
+
:param suppress_invoke_agent_input: If True, suppress input messages for InvokeAgent spans.
266
292
:return: True if configuration succeeded, False otherwise.
Copy file name to clipboardExpand all lines: libraries/microsoft-agents-a365-observability-core/microsoft_agents_a365/observability/core/exporters/__init__.py
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,8 @@
2
2
# Licensed under the MIT License.
3
3
4
4
from .agent365_exporter_optionsimportAgent365ExporterOptions
5
+
from .spectra_exporter_optionsimportSpectraExporterOptions
5
6
6
7
# Agent365Exporter is not exported intentionally.
7
8
# It should only be used internally by the observability core module.
Copy file name to clipboardExpand all lines: libraries/microsoft-agents-a365-observability-core/microsoft_agents_a365/observability/core/exporters/agent365_exporter.py
Copy file name to clipboardExpand all lines: libraries/microsoft-agents-a365-observability-core/microsoft_agents_a365/observability/core/exporters/enriched_span.py
+10-1Lines changed: 10 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -19,22 +19,31 @@ class EnrichedReadableSpan(ReadableSpan):
Copy file name to clipboardExpand all lines: libraries/microsoft-agents-a365-observability-core/microsoft_agents_a365/observability/core/exporters/enriching_span_processor.py
0 commit comments