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
OS: Windows server 2019
Python version: Python 3.12.8
opentelemetry-sdk version: 1.33.0
aiq version: 1.1.0rc5
What happened?
I have a tool that uses opentelemetry to collect telemetry data similar to phoenix and display it on UI.
I want to integrate the tool with Agentic IQ.
I have enabled tracing in config file mentioning "otelcollector" as name and _type.
Getting Error: " module 'opentelemetry.sdk.trace.export' has no attribute 'OTLPSpanExporter' ".
AIQ Toolkit internally uses following code when otelcollector is used instead of phoenix.
async def otel_telemetry_exporter(config: OtelCollectorTelemetryExporter, builder: Builder):
"""Create an OpenTelemetry telemetry exporter."""
# If the dependencies are not installed, a TelemetryOptionalImportError will be raised
opentelemetry = try_import_opentelemetry()
yield opentelemetry.sdk.trace.export.OTLPSpanExporter(config.endpoint)
opentelemetry library doesn't contain any class named OTLPSpanExporter in opentelemetry.sdk.trace.export
Steps to Reproduce
In the config file of any example, enable tracing by adding following code.
We use "otelcollector" in tracing when we want the AIQ tool to send the data to any observability tool other than Phoenix.
Run the example with any input.
Expected Result
Run the example and Send respective telemetry data to the end point mentioned.
Actual Result
AttributeError: module 'opentelemetry.sdk.trace.export' has no attribute 'OTLPSpanExporter'. Did you mean: 'SpanExporteryou mean: 'SpanExporter'?Error: module 'opentelemetry.sdk.trace.export' has no attribute 'OTLPSpanExporter'
Additional context
No response
Would you like to implement a fix?
None
The text was updated successfully, but these errors were encountered:
Describe your environment
OS: Windows server 2019
Python version: Python 3.12.8
opentelemetry-sdk version: 1.33.0
aiq version: 1.1.0rc5
What happened?
I have a tool that uses opentelemetry to collect telemetry data similar to phoenix and display it on UI.
I want to integrate the tool with Agentic IQ.
I have enabled tracing in config file mentioning "otelcollector" as name and _type.
Getting Error: " module 'opentelemetry.sdk.trace.export' has no attribute 'OTLPSpanExporter' ".
AIQ Toolkit internally uses following code when otelcollector is used instead of phoenix.
opentelemetry library doesn't contain any class named OTLPSpanExporter in opentelemetry.sdk.trace.export
Steps to Reproduce
In the config file of any example, enable tracing by adding following code.
We use "otelcollector" in tracing when we want the AIQ tool to send the data to any observability tool other than Phoenix.
Run the example with any input.
Expected Result
Run the example and Send respective telemetry data to the end point mentioned.
Actual Result
Additional context
No response
Would you like to implement a fix?
None
The text was updated successfully, but these errors were encountered: