Jing Liu
Jing Liu

Reputation: 11

Erlang: how to know which process occupies network port and performs IO

I need to know which Erlang process exactly occupies Network port(OS level) and performs IO when a Erlang program running? Is there someway to do this? Even better, some a little easy way to do this?

Upvotes: 1

Views: 73

Answers (1)

user235273
user235273

Reputation:

You can use observer to get info on the ports that a process owns.

Upvotes: 1

Related Questions