Are traces links supported when visualizing traces? #5907
Replies: 2 comments 1 reply
-
Hello @mauroservienti! I'm here to help you with any issues or questions you may have. Let's tackle this together! Yes, traces links are supported when visualizing traces in the Jaeger UI. The Here is an example configuration for "linkPatterns": [{
"type": "process",
"key": "jaeger.version",
"url": "https://github.com/jaegertracing/jaeger-client-java/releases/tag/#{jaeger.version}",
"text": "Information about Jaeger release #{jaeger.version}"
},
{
"type": "tags",
"key": "uniqueId",
"url": "https://mykibana.com/uniqueId=#{uniqueId}&traceId=#{trace.traceID}",
"text": "Redirect to kibana to view log"
}] This configuration allows you to create dynamic links based on trace data, similar to how Azure AppInsights visualizes links. The For more detailed configuration options, you can refer to the Jaeger UI Configuration Documentation [1][2][3][4][5]. Additionally, the Jaeger UI provides an "embedded" layout mode which is intended to support integrating Jaeger UI into other applications. This mode can be configured via URL query parameters, making it easier to embed Jaeger UI into space-constrained layouts. For example, to show a trace in embedded mode, you can use:
This flexibility allows for a more integrated and seamless user experience when visualizing traces and their associated links. |
Beta Was this translation helpful? Give feedback.
-
@dosu, I'm not referring to links as URL links but to linked Activities/Traces. |
Beta Was this translation helpful? Give feedback.
-
The following screenshot shows how Azure AppInsights visualizes links. Is something similar supported in the Jaeger UI?
We're building an application that heavily uses delayed messages. To comply with tail-sampling delayed messages (and for the sake of the discussion, even published events) start a new trace linked to the parent one.
When visualizing traces in Jaeger, we'd like to navigate those links to connect the dots.
Is that possible in Jaeger?
Beta Was this translation helpful? Give feedback.
All reactions