otelcol: ship logs+traces to prod OTLP via upstream role#168
Open
samcm wants to merge 6 commits into
Open
Conversation
Replaces the loki sink in the vector template config with a remap transform + http sink that posts to platform's logs-external clickhouse pipeline at logs-ingest.analytics.production.platform.ethpandaops.io. Reuses secret_loki credentials since the same VMAuth backend fronts both ingresses. New devnets generated from this template will ship logs straight to clickhouse. This mirrors the rollout already done in glamsterdam-devnet-3 (all hosts) and bal-devnet-6 (bootnode-1) where it has been verified end-to-end.
mattevans
approved these changes
May 12, 2026
samcm
commented
May 12, 2026
barnabasbusa
approved these changes
May 12, 2026
This reverts commit 46a8c4a.
This reverts commit b7f807f.
New template devnets now run ethpandaops.general.otelcol_contrib alongside vector. Logs + traces flow to the production OTLP endpoint (vmauth tags as external tier). Vector stays as the Loki shipper for now; sink renamed [sinks.out] -> [sinks.loki] for clarity and `otelcol` added to vector's exclude list so it doesn't loop on its own logs.
…case) The docker container parser fails to extract container.name from otelcol's own log file, leaving the attribute nil. The original container.name regex filter therefore lets every otelcol-contrib log through, both the first-line structured records and the stack-trace continuation rows that share no container metadata. Adding a body-match clause (github.com/open-telemetry/opentelemetry-collector-contrib or otelcol-contrib substring) catches both cases and drops the self-emitted spam at the source. Verified on blob-devnets prysm-besu-full-1: cluster-wide otelcol error volume fell from ~1M / 5min to 0 with this clause in place.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds
ethpandaops.general.otelcol_contrib(now provided by the collection) alongside vector. New devnets generated from this template will ship logs + traces tohttps://otlp.analytics.production.platform.ethpandaops.io, where vmauth tags them as external tier and routes intoexternal.otel_logs/external.otel_tracesin ClickHouse.Vector stays as the Loki shipper for now — same dual-write pattern we kept when migrating blob-devnets, glamsterdam-devnets, and bal-devnets. Earlier vector→clickhouse_logs sink approach (reverted in this PR) is superseded by the otelcol path.