Module edbg_pp_tree

This module provides functionality to pretty print a tree of linked Erlang processes and ports.

Copyright © (C) 2024, Torbjorn Tornkvist

Authors: Torbjorn Tornkvist (kruskakli@gmail.com).

Description

This module provides functionality to pretty print a tree of linked Erlang processes and ports. It visualizes the process hierarchy using ASCII characters, making it easier to understand the relationships between processes in an Erlang system.

The module offers three main functions: - print/1: Prints the process tree starting from a given node. - print/2: Prints the process tree with additional information. - print/3: Prints the process tree with a maximum depth and additional information.

Function Index

print/1Prints the process tree starting from the given node.
print/2Prints the process tree with additional information.
print/3Prints the process tree with a maximum depth and additional information.

Function Details

print/1

print(Node) -> any()

Prints the process tree starting from the given node.

print/2

print(Node, Xinfo) -> any()

Prints the process tree with additional information.

print/3

print(Node, MaxDepth, Xinfo) -> any()

Prints the process tree with a maximum depth and additional information.


Generated by EDoc