You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 29, 2021. It is now read-only.
When looking at a trace (/traces/<id>), the graph only shows two spans (the root, and one child). Clicking on the child loads a new page that shows the child and its child. There is no way to view the entire trace's graph at once. Screenshot with example attached:
The text was updated successfully, but these errors were encountered:
Worse, the current design if the UI doesn't allow for displaying the entire tree at once, because the tree structure isn't visible. If each span had more than one child, one couldn't tell which span belonged to which.
Some clarification: Viewing a trace /traces/<id> shows the root span (host1 above) and all of its children. I can confirm this behavior as working with go run ./examples/cmd/webapp-influxdb/main.go which shows:
In your case, the root span host1 appears to have only one child span host2. Note that profile view shows all spans in the trace, so these two views should differ.
In response to the feature request of viewing all spans in a trace at once via this view, I agree it's a good idea.
What would be the current good practice? Have one root span and flatten the span tree in multiple children or wait for the feature to be implemented and keep a full span tree?
When looking at a trace (
/traces/<id>
), the graph only shows two spans (the root, and one child). Clicking on the child loads a new page that shows the child and its child. There is no way to view the entire trace's graph at once. Screenshot with example attached:The text was updated successfully, but these errors were encountered: