We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am deploying the opentelemetry collector with the standard configuration:
receivers: otlp: protocols: grpc: endpoint: 0.0.0.0:4317 http: endpoint: 0.0.0.0:4318 processors: batch: exporters: logging: prometheus: endpoint: "0.0.0.0:9999" service: pipelines: traces: receivers: [otlp] processors: [batch] exporters: [logging] metrics: receivers: [otlp] processors: [batch] exporters: [prometheus]
The configuration of the open telemetry client for each microservice is as follows::
spring: opentelemetry: traces: exporter: otlp: endpoint: http://localhost:4317 sampler: probability: 1.0 management: endpoints: web: exposure: include: health,info,prometheus endpoint: prometheus: enabled: true
However, I get this error even though I disable grpc and use http only:
2024-07-12T23:27:06.809+03:00 WARN 26632 --- [user-feedback-service] [lector:4317/...] i.o.exporter.internal.grpc.GrpcExporter : Failed to export spans. Server responded with gRPC status code 2. Error message: otel-collector
The text was updated successfully, but these errors were encountered:
sabexzero
No branches or pull requests
I am deploying the opentelemetry collector with the standard configuration:
The configuration of the open telemetry client for each microservice is as follows::
However, I get this error even though I disable grpc and use http only:
The text was updated successfully, but these errors were encountered: