Text viewer for call tree data from method tracing.
Renders call trees as ASCII trees with box-drawing characters, showing call counts and call count percentages.
Text viewer for call tree data from method tracing. Renders call trees as ASCII trees with box-drawing characters, showing call counts and call count percentages.
(print-call-tree {:keys [call-tree-id]} data-map)Print a call tree to out with a header showing total calls.
Print a call tree to *out* with a header showing total calls.
(print-most-called {:keys [most-called-id]} data-map)Print a table of most frequently called methods.
Print a table of most frequently called methods.
(render-call-tree call-tree)Render a call tree as an ASCII tree string.
Returns a string with the tree structure using box-drawing characters. Each node shows: class.method (N calls, X.X%)
Render a call tree as an ASCII tree string. Returns a string with the tree structure using box-drawing characters. Each node shows: class.method (N calls, X.X%)
(total-call-count node)Calculate the total call count across all nodes in the tree. Sums the :call-count of each node recursively.
Calculate the total call count across all nodes in the tree. Sums the :call-count of each node recursively.
cljdoc builds & hosts documentation for Clojure/Script libraries
| Ctrl+k | Jump to recent docs |
| ← | Move to previous article |
| → | Move to next article |
| Ctrl+/ | Jump to the search field |