Hi everyone when I try to instrument Python its working for the cloud but not self-hosted and for node its works find for both self-hosted via docker and cloud
I try it with command - OTEL_SERVICE_NAME=search_app OTEL_TRACES_EXPORTER=console,otlp OTEL_METRICS_EXPORTER=console,otlp OTEL_EXPORTER_OTLP_TRACES_ENDPOINT=
http://localhost:4317 OTEL_EXPORTER_OTLP_PROTOCOL=grpc opentelemetry-instrument python3 search_app.py
I can see the metrics logging in the console but after that, I'm getting
WARNING
opentelemetry.exporter.otlp.proto.grpc.exporterTransient error StatusCode.UNAVAILABLE encountered while exporting traces to localhost:4317, retrying in 1s.
and there is no service created concerning the python app, Is anyone facing the same issue