get_supervision_tree
Retrieve an application's full OTP supervision tree: recursively explore supervisors to display the process hierarchy with PIDs, types, and child counts. Requires an app name.
Instructions
Get the OTP supervision tree for an application. Recursively walks supervisors showing the full hierarchy of processes with PIDs, types, and child counts.
You MUST specify the app name. Use get_app_config or project_eval with Application.started_applications() to find app names if unsure.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| app | Yes | Application name (required — e.g. "merlinex", "phoenix") | |
| depth | No | Max recursion depth (default: 10) |