Behaviours: application.
dump_option() = {modules, [atom()]}
dump_return() = ok | error
filename() = string()
lnlimit() = undefined | pos_integer()
lnlimits() = {lnlimit(), lnlimit()}
| capture_io/2 | This is an untidy hack. |
| config_change/3 | |
| dump_all_connected/1 | Dump the cluster_info on all connected nodes to the specified File. |
| dump_all_connected/2 | |
| dump_local_node/1 | Dump the cluster_info on local node to the specified File. |
| dump_local_node/2 | |
| dump_node/2 | Dump the cluster_info on Node to the specified local File. |
| dump_node/3 | |
| dump_nodes/2 | Dump the cluster_info on all specified nodes to the specified File. |
| dump_nodes/3 | |
| format/2 | |
| format/3 | |
| format_noescape/2 | |
| format_noescape/3 | |
| get_limits/0 | |
| list_reports/0 | |
| list_reports/1 | |
| prep_stop/1 | |
| register_app/1 | "Register" an application with the cluster_info app. |
| reset_limits/0 | |
| send/2 | |
| start/0 | |
| start/2 | |
| start_phase/3 | |
| stop/1 |
capture_io(Timeout::integer(), Fun::function()) -> [term()]
This is an untidy hack.
config_change(Changed::term(), New::term(), Removed::term()) -> ok
dump_all_connected(Path::filename()) -> [dump_return()]
Dump the cluster_info on all connected nodes to the specified File.
dump_all_connected(Path, Opts) -> any()
dump_local_node(Path::filename()) -> [dump_return()]
Dump the cluster_info on local node to the specified File.
dump_local_node(Path, Opts) -> any()
dump_node(Node::atom(), Path::filename()) -> dump_return()
Dump the cluster_info on Node to the specified local File.
dump_node(Node::atom(), Path::string(), Opts::[dump_option()]) -> dump_return()
dump_nodes(Nodes::[atom()], Path::filename()) -> [dump_return()]
Dump the cluster_info on all specified nodes to the specified File.
dump_nodes(Nodes0, Path, Opts) -> any()
format(Pid, Fmt) -> any()
format(Pid, Fmt, Args) -> any()
format_noescape(Pid, Fmt) -> any()
format_noescape(Pid, Fmt, Args) -> any()
get_limits() -> lnlimits()
list_reports() -> any()
list_reports(Mod) -> any()
prep_stop(State::term()) -> any()
register_app(CallbackMod::atom()) -> ok | undef
"Register" an application with the cluster_info app.
"Registration" is a misnomer: we're really interested only in having the code server load the callback module, and it's that side-effect with the code server that we rely on later.reset_limits() -> any()
send(Pid, IoData) -> any()
start() -> {ok, pid()}
start(Type::term(), StartArgs::term()) -> {ok, pid()}
start_phase(Phase::term(), StartType::term(), PhaseArgs::term()) -> ok
stop(State::term()) -> ok
Generated by EDoc