I try add appmon in ranch example, here is my relx.config file
{paths, ["/usr/local/lib"]}.
{release, {tcp_echo_example, "1"}, [
tcp_echo,
appmon
]}.
{extended_start_script, true}.
After generated, I start application succeed but failed start appmon in Erlang console
([email protected])3> application:start(appmon).
{error,{already_started,appmon}}
Looks appmon already started, but how can I see the appmon window?
Erlang: R16B02
relx: 1.0.2
Appmon is already started and there is no need to start it again.
Also you can use:
or something like
to ensure run the application.