Hi everyone when I try to instrument Python its wo...
# support
a
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 WARNINGopentelemetry.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
Im using opentelemetry-distro==0.47b0 and opentelemetry-exporter-otlp==1.26.0 because instead of the version in doc because when I run no metric is being logged in console
s
WARNINGopentelemetry.exporter.otlp.proto.grpc.exporterTransient error StatusCode.UNAVAILABLE
The collector is not available. Please make sure collector is running and reachable by application
249 Views