From 46314e6d385f00f2baa772f10f66a35e77fbef50 Mon Sep 17 00:00:00 2001 From: asepharyana Date: Wed, 22 Jul 2026 18:16:10 +0700 Subject: [PATCH] fix(infra): correct Traefik OTLP tracing flags --- infra/compose/traefik.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/infra/compose/traefik.yml b/infra/compose/traefik.yml index bb1aff3..0e42bf8 100644 --- a/infra/compose/traefik.yml +++ b/infra/compose/traefik.yml @@ -50,11 +50,9 @@ services: - '--experimental.plugins.blockpath.moduleName=github.com/traefik/plugin-blockpath' - '--experimental.plugins.blockpath.version=v0.2.1' - '--ping=true' - - '--tracing.otel=true' - - '--tracing.otel.address=otel-collector:4318' - - '--tracing.otel.insecure=true' - - '--tracing.otel.grpc=false' - - '--tracing.serviceName=traefik' + - '--tracing.otlp=true' + - '--tracing.otlp.http=true' + - '--tracing.otlp.http.endpoint=http://otel-collector:4318' healthcheck: test: ['CMD', 'wget', '--spider', 'http://localhost:8080/ping'] interval: 30s