Skip to content

Conversation

@MyMirelHub
Copy link
Contributor

Thank you for helping make the Dapr documentation better!

Please follow this checklist before submitting:

  • Commits are signed with Developer Certificate of Origin (DCO - learn more)
  • Read the contribution guide
  • Commands include options for Linux, MacOS, and Windows within tabpane
  • New file and folder names are globally unique
  • Page references use shortcodes instead of markdown or URL links
  • Images use HTML style and have alternative text
  • Places where multiple code/command options are given have tabpane

In addition, please fill out the following to help reviewers understand this pull request:

Description

Updated the Jaeger tracing documentation to focus on Jaeger V2 with native OTLP support, using the OpenTelemetry Operator and in-memory storage, with a note on persistent storage backends. The changes replace outdated Jaeger V1 content

Issue reference

#4920

@MyMirelHub MyMirelHub requested review from a team as code owners October 22, 2025 08:53
@salaboy
Copy link
Contributor

salaboy commented Oct 22, 2025

/LGTM please approve as the current docs are broken

@yaron2 yaron2 merged commit 8c5ab7d into dapr:v1.16 Oct 22, 2025
7 checks passed
Copy link
Member

@msfussell msfussell left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There are more coming from me for changes needed here. Please create a new PR

```bash
docker run -d --name jaeger \
-p 4317:4317 \
docker run --rm --name jaeger \
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I suggest two updates here.

  • Add that -p 9411:9411 clashes with zipkin that may already be running and you should stop zipkin first with a docker stop command

  • Add the -d command so this runs detached in the background. Like this

docker run -d --rm --name jaeger \
  -p 16686:16686 \
  -p 4317:4317 \
  -p 4318:4318 \
  -p 5778:5778 \
  -p 9411:9411 \
  cr.jaegertracing.io/jaegertracing/jaeger:2.11.0

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'll make a new PR

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants