Are there any good code profilers/analyzers for Erlang? I need something that can build a Call graph for my code.
相关问题
- Is “new” in Erlang part of the official standard a
- how to create a keep-alive process in Erlang
- ejabberd and Erlang installation with lager_transf
- Encrypt (cryptojs) - Decrypt (erlang)
- How to use erlang-examples
相关文章
- Number of Javascript lines executed during page lo
- How do I modify a record in erlang?
- Check active timers in Erlang
- undefined function maps:to_json/1
- How to convert datetime() to timestamp() in Erlang
- How to see time taken by each method in Java progr
- what good orm api will work well with scala or erl
- GC performance in Erlang
The 'fprof' module includes profiling features. From the fprof module documentation:
fprof:apply
(ortrace
) runs the function,profile
converts the trace file into something useful, andanalyse
prints out the summary. This will give you a list of function calls observed, what called them, and what they called, as well as wall-clock timing info.Try this one: https://github.com/virtan/eep You could get something like this https://raw.github.com/virtan/eep/master/doc/sshot1.png
For static code analysis you have XREF and DIALYZER, for profiling you can use cprof, fprof or eprof, you can get good reference here...