LoginSignup
0
0

More than 5 years have passed since last update.

erlangでトレーシング(tracing in erlang)

Posted at

特定のプロセスの動作をトレシングしたい


            dbg:tracer(port,dbg:trace_port(file,"traceFile")),
            P = whereis(gproc),
            dbg:p(P, [all ]),
            dbg:tp('_', cx),

シェルからバイナリーログファイルを解析する時

Pid = dbg:trace_client(file,"traceFile").
dbg:stop_trace_client(Pid).

gen_serverなら、start_link関数にデバッグオプションを入れることでログ情報も取れます

{debug, [trace]}
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0