Missing Jaeger icons in Linkerd UI #6464
-
I saw in the version 2.10 doc there should have Jaeger icons. I can see all traces in Jaeger UI, but I do not see those Jaeger icons in Linkerd UI. Any idea? Thanks BTW, I saw in version 2.9 https://linkerd.io/2.9/tasks/distributed-tracing/ I need a config.yaml
Just want to confirm, I do not need it in 2.10, right? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Thanks for the feedback @hongbo-miao , that's a good find 👍 Edit: Issue created at #6470 |
Beta Was this translation helpful? Give feedback.
Thanks for the feedback @hongbo-miao , that's a good find 👍
Indeed, that 2.9 config is not relevant for 2.10. For the 2.10 dashboard to show the jaeger links it requires that the
web
Deployment in thelinkerd-viz
namespace contains a flag pointing to the jaeger UI:jaeger-addr=jaeger.linkerd-jaeger:16686
. That can be edited manually, or through the CLI (or equivalently through Helm) by upgrading the jaeger extension withlinkerd jaeger install --set jaegerUrl=xxx
. I'll open a ticket to clarify that in the docs.OTOH, as a further improvement, this could be handled automatically by the dashboard component by dynamically figuring if the jaeger extension is installed...
Edit: Issue created at …