Replies: 1 comment 2 replies
-
Hey @ez4r1sk! I'm here to help you with your question. Let's figure this out together! Yes, there is an API for Jaeger's Deep Dependency Graph feature. You can use the Here is the relevant code snippet: fetchDeepDependencyGraph(query) {
return getJSON(`${ANALYTICS_ROOT}v1/dependencies`, { query });
} This method allows you to fetch the deep dependency graph by passing the appropriate query parameters. The Deep Dependency Graph, also known as the "Transitive Dependency Graph," shows a chain For more details, you can refer to the Jaeger documentation [1][2][3][4]. |
Beta Was this translation helpful? Give feedback.
-
The Deep Dependency graph feature helps me to visualize the workflow of how different services interact with each other and relations between them. I find it better than the System Architecture graph although both are from the trace data, also the Layout settings are very useful to extract a minimal workflow of a particular program.
Wanted to know if there is some kind of API that would help extract this graph with just some tags?
Beta Was this translation helpful? Give feedback.
All reactions