erlang性能分析命令

转自这里

  1. 找出cpu占用最高的进程,每10秒更新一次

spawn(fun() -> etop:start([{interval,10}, {sort, runtime}]) end).
etop:stop().

  1. 找出内存占用较高进程, 输出进程的数量为20,文本形式输出

spawn(fun() ->etop:start([{output, text}, {lines, 20}, {sort, memory}]) end).
etop:stop().

你可能感兴趣的:(erlang性能分析命令)