From e7285467c4505ba389649c8f4b2388f186bdc298 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=BCnther=20Foidl?= Date: Thu, 9 Apr 2026 12:49:40 +0200 Subject: [PATCH] Changed `otlphttp` to `otlp_http` MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Günther Foidl --- docker/otelcol-config.yaml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/docker/otelcol-config.yaml b/docker/otelcol-config.yaml index 312ac2d4..3ea61f38 100644 --- a/docker/otelcol-config.yaml +++ b/docker/otelcol-config.yaml @@ -25,15 +25,15 @@ processors: batch: exporters: - otlphttp/metrics: + otlp_http/metrics: endpoint: http://127.0.0.1:9090/api/v1/otlp tls: insecure: true - otlphttp/traces: + otlp_http/traces: endpoint: http://127.0.0.1:4418 tls: insecure: true - otlphttp/logs: + otlp_http/logs: endpoint: http://127.0.0.1:3100/otlp tls: insecure: true @@ -54,18 +54,18 @@ service: traces: receivers: [otlp] processors: [batch] - exporters: [otlphttp/traces] - #exporters: [otlphttp/traces,debug/traces] + exporters: [otlp_http/traces] + #exporters: [otlp_http/traces,debug/traces] metrics: receivers: [otlp, prometheus/collector] processors: [batch] - exporters: [otlphttp/metrics] - #exporters: [otlphttp/metrics,debug/metrics] + exporters: [otlp_http/metrics] + #exporters: [otlp_http/metrics,debug/metrics] logs: receivers: [otlp] processors: [batch] - exporters: [otlphttp/logs] - #exporters: [otlphttp/logs,debug/logs] + exporters: [otlp_http/logs] + #exporters: [otlp_http/logs,debug/logs] profiles: receivers: [otlp] exporters: [otlp/profiles]