fix(dev): traces not arriving in tempo 1.4+

Tempo 1.4 changed the default port for OTLP HTTP, this changes our references
to this port.
This commit is contained in:
Julian Tölle 2022-09-26 19:20:07 +02:00
parent 2afeed0ff7
commit 1ac709da24
2 changed files with 2 additions and 2 deletions

View file

@ -30,7 +30,7 @@ services:
APP_URL: "http://localhost:3000" APP_URL: "http://localhost:3000"
NODE_ENV: local # pretty logs NODE_ENV: local # pretty logs
OTEL_EXPORTER_OTLP_ENDPOINT: http://tempo:55681/v1/traces OTEL_EXPORTER_OTLP_ENDPOINT: http://tempo:4318/v1/traces
env_file: .env env_file: .env
volumes: volumes:
- ./src:/app/src - ./src:/app/src

View file

@ -53,8 +53,8 @@ services:
- ./tempo/tempo.yaml:/etc/tempo.yaml - ./tempo/tempo.yaml:/etc/tempo.yaml
- tempo_data:/tmp/tempo - tempo_data:/tmp/tempo
ports: ports:
- "55680" # OpenTelemetry
- "3101" # tempo - "3101" # tempo
- "4318" # OpenTelemetry HTTP
networks: networks:
- observability - observability
- api - api