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
Describe the bug
When I start the collector, without any data being processed, after a minute or so, the health_check endpoint is returning a 500 error.
Steps to reproduce
Execute ./otelcol-contrib with the health_check extension enabled, run a loop of curl commands and you will see the error.
Describe the bug
When I start the collector, without any data being processed, after a minute or so, the health_check endpoint is returning a 500 error.
Steps to reproduce
Execute ./otelcol-contrib with the health_check extension enabled, run a loop of curl commands and you will see the error.
In the logs nothing appears
What did you expect to see?
curl -v http://localhost:8433/health/status
< HTTP/1.1 500 Internal Server Error
< Date: Thu, 08 Dec 2022 17:42:30 GMT
< Content-Length: 0
What did you see instead?
A 200 response.
What version did you use?
0.61
What config did you use?
receivers:
otlp:
protocols:
grpc:
endpoint: 0.0.0.0:4317
processors:
batch:
exporters:
logging:
logLevel: debug
jaeger:
endpoint: xxxxxxxxxx:443
tls:
cert_file:/sources/open-telemetry/otelcol-bin/mydomain.com.crt.hdp
key_file: /sources/open-telemetry/otelcol-bin/mydomain.com.key.hdp
extensions:
health_check:
endpoint: "0.0.0.0:8433"
path: "/health/status"
check_collector_pipeline:
enabled: true
interval: "5m"
exporter_failure_threshold: 5
service:
extensions: [health_check]
telemetry:
logs:
level: debug
initial_fields:
service: local-ubuntu
metrics:
level: basic
address: 0.0.0.0:8080
pipelines:
traces:
receivers: [otlp]
processors: [batch]
exporters: [jaeger]
Environment
OS: (e.g., "Ubuntu 20.04")
On my local WSL2 ubuntu, and in our k8s environment (we use the health_check as liveness probe)
Additional context
We use a jaeger exporter with TLS and certificate configuration.
The text was updated successfully, but these errors were encountered: