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
With a very basic Python app, injection causes the auto instrumentation to fail with RuntimeError: Requested component 'otlp_proto_grpc' not found in entry points for 'opentelemetry_metrics_exporter'. See open-telemetry/opentelemetry-python-contrib#1361, but I'm happy to provide a repro as well.
What's happening is the default value for OTEL_METRICS_EXPORTER is otlp_proto_grpc, but that exporter is not included in the image's requirements.txt as the operator should be using HTTP.
Until we implement an OTLP/HTTP exporter for python that can be used in the operator (open-telemetry/opentelemetry-python#2447) I think we should just disable metrics in the operator by setting OTEL_METRICS_EXPORTER=none.
The text was updated successfully, but these errors were encountered:
With a very basic Python app, injection causes the auto instrumentation to fail with
RuntimeError: Requested component 'otlp_proto_grpc' not found in entry points for 'opentelemetry_metrics_exporter'
. See open-telemetry/opentelemetry-python-contrib#1361, but I'm happy to provide a repro as well.What's happening is the default value for
OTEL_METRICS_EXPORTER
isotlp_proto_grpc
, but that exporter is not included in the image's requirements.txt as the operator should be using HTTP.Until we implement an OTLP/HTTP exporter for python that can be used in the operator (open-telemetry/opentelemetry-python#2447) I think we should just disable metrics in the operator by setting
OTEL_METRICS_EXPORTER=none
.The text was updated successfully, but these errors were encountered: