Skip to content

Tracing via DORA_JAEGER_TRACING does not work #1313

@dreamroboat

Description

@dreamroboat

Describe the bug
When following the official Dora tracing guide
https://dora-rs.ai/docs/guides/Debugging/tracing

and configuring Jaeger as instructed, Dora does not emit any tracing data to Jaeger.
As a result, no Dora-related services or spans appear in the Jaeger UI, and it is not possible to observe per-node message processing or input/output latency.

This makes it currently impossible to use tracing to monitor dataflow-level or node-level latency, despite tracing being presented as the recommended observability mechanism.

To Reproduce
Steps to reproduce the behavior:
1、Start Jaeger (all-in-one) locally:
docker run -d \ -p6831:6831/udp -p6832:6832/udp -p16686:16686 \ jaegertracing/all-in-one:latest

2、Export the tracing environment variable as described in the documentation:
export DORA_JAEGER_TRACING=127.0.0.1:6831

3、Start the Dora daemon:
dora up

4、Start a dataflow:
dora start dataflow.yaml

  1. Let the dataflow run for some time (nodes are active and exchanging messages).
    Open Jaeger UI at:http://localhost:16686

Expected behavior
When DORA_JAEGER_TRACING is set and a dataflow is running:

  • Dora should emit tracing spans to Jaeger.
  • Dora-related services should appear in the Jaeger UI.
  • It should be possible to observe:
    • Per-node message processing time
    • Input → output latency within a node
    • End-to-end latency across multiple nodes in a dataflow
    • This is the behavior implied by the official tracing documentation.

Environments (please complete the following information):

Additional context
Add any other context about the problem here.

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't workingcliCLIdaemondocumentationImprovements or additions to documentation

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions