Created
July 19, 2011 08:12
-
-
Save dustin/1091684 to your computer and use it in GitHub Desktop.
I'm sure everybody's written ten of these...
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-module(ns_ps). | |
-export([nps/0, nps/1, ps/0, ps/1]). | |
interestingThings() -> | |
[current_function, initial_call, message_queue_len, | |
total_heap_size, heap_size, stack_size, reductions]. | |
defaultOutput(S) -> io:format("~s~n", [S]). | |
ps(Output) -> | |
InterestingParts = interestingThings(), | |
lists:foreach(fun (Proc) -> | |
try | |
Info = process_info(Proc), | |
Output([string:join( | |
[atom_to_list(node())| | |
lists:map(fun (X) -> | |
io_lib:format("~p", | |
[proplists:get_value(X, Info)]) | |
end, | |
InterestingParts)], | |
"\t" | |
)]) | |
catch _:_ -> ok | |
end | |
end, | |
processes()). | |
ps() -> ps(fun defaultOutput/1). | |
nps(Output) -> | |
InterestingParts = interestingThings(), | |
Output(string:join(lists:map(fun erlang:atom_to_list/1, [node|InterestingParts]), ",")), | |
lists:foreach( | |
fun(Node) -> rpc:call(Node, ?MODULE, ps, [Output]) end, | |
nodes(known)). | |
nps() -> nps(fun defaultOutput/1). |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment