Skip to content
Merged
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
2 changes: 1 addition & 1 deletion airflow-core/tests/integration/otel/test_otel.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ class TestOtelIntegration:
- start breeze with '--integration otel'
- run on the shell 'export use_otel=true'
- run the test
- check 'http://localhost:36686/'
- check 'http://localhost:26686/'

To get a db dump on the stdout, run 'export log_level=debug'.
"""
Expand Down
12 changes: 8 additions & 4 deletions scripts/ci/docker-compose/integration-otel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,15 @@ services:
environment:
COLLECTOR_OTLP_ENABLED: true
COLLLECTOR_ZIPKIN_HOST_PORT: 9411
# Host ports are intentionally below 32768 to stay outside Linux's default
# ephemeral port range (32768-60999). Picking high ports inside that range
# causes intermittent CI failures when the kernel transiently grabs the
# same port for an outbound connection from another process on the runner.
ports:
- "36686:16686"
- "34317:4317"
- "34318:4318"
- "39422:9422"
- "26686:16686"
- "24317:4317"
- "27318:4318"
- "29422:9422"

airflow:
environment:
Expand Down
Loading