observer_cli

Build StatusHex.pm

Visualize Erlang/Elixir Nodes On The Command Line By Using recon.

Animation Show.

Goal

Minimal consumption.

Just look like observer, but in shell,

you might think observer_cli would be more convenient than observer.


Install

Erlang

%% rebar.config
{deps, [observer_cli]}

Elixir

# mix.exs
def deps do
[{:observer_cli, "~> 1.2.0"}]
end
def application do
[applications: [:observer_cli]]
end

Try In Shell

$ rebar3 shell
1> observer_cli:start().

Escriptize

  1. rebar3 escriptize to generate an escript executable containing the project's and its dependencies' BEAM files.

    Place script(_build/default/bin/observer_cli) anywhere in your path and use observer_cli command.

  2. observer_cli <TARGETNODE> <TARGETCOOKIE> to monitor remote node.

    ensure observer_cli application start on target node.


Process And System Information

Top

Process

ETS And System Information

System

Allocator Information

Allocator

Mnesia Information

Mnesia

Help Information

Help


Command

> observer_cli:start().%% default refresh interval is 2000
> observer_cli:start(Node).
> observer_cli:start(Node, Cookie).

TODO


Changelog


License

See the LICENSE file for license rights and limitations (MIT).