We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement dot notation for profile trees.
dot
#576 this particular bug happens because the "Explain" button requires "dot" notation which is not implemented.
Dot notation is a human-readable graph representation https://en.wikipedia.org/wiki/DOT_(graph_description_language) https://graphviz.org/doc/info/lang.html
The pyrosope implementation of dot is located in https://github.com/grafana/pyroscope/tree/main/pkg/frontend/dot/graph . An example of a dot graph: example_gv.txt Description of a graph: https://github.com/google/pprof/blob/main/doc/README.md#graphical-reports Online dot graph viewer: https://dreampuf.github.io/GraphvizOnline/
For now let's omit
And implement the tree rendering method of a profile.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
What
Implement
dot
notation for profile trees.Why
#576 this particular bug happens because the "Explain" button requires "dot" notation which is not implemented.
How
Dot notation is a human-readable graph representation
https://en.wikipedia.org/wiki/DOT_(graph_description_language)
https://graphviz.org/doc/info/lang.html
The pyrosope implementation of dot is located in https://github.com/grafana/pyroscope/tree/main/pkg/frontend/dot/graph .
An example of a dot graph: example_gv.txt
Description of a graph: https://github.com/google/pprof/blob/main/doc/README.md#graphical-reports
Online dot graph viewer: https://dreampuf.github.io/GraphvizOnline/
For now let's omit
And implement the tree rendering method of a profile.
The text was updated successfully, but these errors were encountered: