Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Dockerfile.otel
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
FROM otel/opentelemetry-collector-contrib:0.136.0
COPY src/lib/otel/receivers_config.yml /etc/otel/receivers_config.yml
COPY src/lib/otel/production_config.yml /etc/otel/production_config.yml
CMD ["--config", "/etc/otel/production_config.yml", "--config", "/etc/otel/receivers_config.yml"]
16 changes: 16 additions & 0 deletions deployment/development/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,19 @@ services:
DATABASE_URL: "postgresql://db-user:1234@db:5432/dev-buildengine?schema=public"
# MUST be included (the path the application will be accessed on) and MUST NOT have a trailing slash
ORIGIN: "http://localhost:8443"

otel:
image: otel/opentelemetry-collector-contrib:0.136.0
ports:
- "6317:6317" # gRPC
- "6318:6318" # HTTP
- "55679:55679" # UI
volumes:
- ./src/lib/otel/development_config.yml:/etc/development_config.yml
- ./src/lib/otel/receivers_config.yml:/etc/receivers_config.yml
command: ["--config", "/etc/development_config.yml", "--config", "/etc/receivers_config.yml"]

jaeger:
image: cr.jaegertracing.io/jaegertracing/jaeger:latest
ports:
- "16686:16686"
Loading
Loading