Replies: 1 comment
|
A couple of Helm-chart specifics are likely biting you here, separate from the receiver itself (which is fine — 1. The chart doesn't open your receiver's port just because the config uses it. The chart exposes container/service ports from its own ports:
prom-rw:
enabled: true
containerPort: 19291
servicePort: 19291
protocol: TCP(and drop the hand-written Service — let the chart manage it, especially since you also set 2. Your 3. "No receiver start log" isn't necessarily an error. The receiver logs on startup at info, but if the port never bound (point 1) you also won't see it serving. Quickest way to localize it:
My guess is |
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Hey people!
I'm trying to deploy an OpenTelemetry Collector using the
prometheusremotewritereceiver, but I can't seem to get it to start. I'm using the official Helm chart to install the collector. Here’s my YAML configuration:In addition, I can provide the service.yaml:
I can deploy the collector without any warnings, but I don’t see any logs indicating that the
prometheusremotewritereceiver has started. Does anyone have suggestions on what might be going wrong?All reactions