> start multprocTCPBase
> address localhost 1900
Actor Address 0: ...
> status 0
This will get a status report from the Admin itself. The Admin knows the address of all of the top-level Actors, and each Actor knows the addresses of any child actors it has created, so you can use the status reports from each actor to get these addresses. Alternatively, if you know the port number for the actor you want to query (e.g. from `ps` output) then you can use the `address localhost PORTNUM` command to create an enumerated address for querying that specific actor.
The status information will include pending transmit messages. Thespian usually queues on the transmit side to better support back-propagation of flow regulation.
-Kevin