get_process_info
Get metadata about a process: what function it runs, memory usage, message queue length, links, monitors, and stacktrace. Understand a process's identity and vital signs.
Instructions
Get metadata ABOUT a process: what function it's running, memory usage, message queue length, links, monitors, stacktrace.
WHEN TO USE: You want to know what a process IS and what it's DOING — its identity and vital signs. NOT FOR: The data the process is holding (use get_process_state). Metadata in the process dictionary (use get_process_dictionary). Use list_processes first to find PIDs/names if you don't know them.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| pid | Yes | PID string (e.g. "<0.123.0>") or registered name (e.g. "MyApp.Worker") |