2
votes
1answer
89 views
In erlang/OTP how do I start appmon to monitor an existing node?
Hi.
I have a running erlang application, launched with this command line
erl -boot start_sasl -config config/cfg_qa -detached -name peasy -cookie peasy -pa ./ebin -pa ./ebin …
3
votes
In erlang/OTP how do I start appmon to monitor an existing node?
Found.
As always with erlang, to have two nodes speak to each other, you need to ping:
1> net_adm:ping(other_node_you_want_to_monitor).
pong
2> appmon:start().
{ok,< …
