forked from robertoaloi/recon
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
362 additions
and
13 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,13 +13,13 @@ | |
<h1>Recon</h1> | ||
<nav> | ||
<ul> | ||
<li><a href="index.html">index</a><li><a href="recon.html">recon</a><li><a href="recon_alloc.html">recon_alloc</a><li><a href="recon_lib.html">recon_lib</a> | ||
<li><a href="index.html">index</a><li><a href="recon.html">recon</a><li><a href="recon_alloc.html">recon_alloc</a><li><a href="recon_lib.html">recon_lib</a><li><a href="recon_trace.html">recon_trace</a> | ||
</ul> | ||
</nav> | ||
</header> | ||
<article> | ||
<h2>Recon Application</h2> | ||
<p>Copyright © 2012-2013 Fred Hebert (BSD 3-Clause License) | ||
<p>Copyright © 2012-2014 Fred Hebert (BSD 3-Clause License) | ||
</p> | ||
<p><strong>Authors:</strong> Fred Hebert (<a href="mailto:[email protected]"><code>[email protected]</code></a>) [<em>web site:</em> <code><a href="http://ferd.ca/" target="_top">http://ferd.ca/</a></code>].</p> | ||
<p>Recon is a library to be dropped into any other Erlang project, | ||
|
@@ -41,18 +41,24 @@ <h2>Recon Application</h2> | |
calls with distributed Erlang nodes. | ||
</dd> | ||
|
||
<dt><a href="recon_alloc.html"><code>recon_alloc</code></a></dt> | ||
<dd> | ||
Regroups functions to deal with Erlang's memory allocators, or | ||
particularly, to try to present the allocator data in a way that | ||
makes it simpler to discover the presence of possible problems. | ||
</dd> | ||
|
||
<dt><a href="recon_lib.html"><code>recon_lib</code></a></dt> | ||
<dd> | ||
Regroups useful functionality used by <a href="recon.html"><code>recon</code></a> when dealing | ||
with data from the node. Would be an interesting place to look | ||
if you were looking to extend Recon's functionality | ||
</dd> | ||
|
||
<dt><a href="recon_alloc.html"><code>recon_alloc</code></a></dt> | ||
<dt><a href="recon_trace.html"><code>recon_trace</code></a></dt> | ||
<dd> | ||
Regroups functions to deal with Erlang's memory allocators, or | ||
particularly, to try to present the allocator data in a way that | ||
makes it simpler to discover the presence of possible problems. | ||
Provides production-safe tracing facilities, to dig into the | ||
execution of programs and function calls as they are running. | ||
</dd> | ||
</dl> | ||
|
||
|
@@ -79,6 +85,16 @@ <h2>Recon Application</h2> | |
information that can be useful in determining the most common causes | ||
of node failure. | ||
</dd> | ||
|
||
<dt><code>queue_fun.awk</code></dt> | ||
<dd> | ||
Awk script to tun on an Erlang Crash dump as | ||
<code>awk -v threshold=<queue size> -f queue_fun.awk <crashdump></code> and will | ||
show what function processes with queue sizes larger or equal to | ||
<code><queue size></code> were operating at the time of the crash dump. May help | ||
find out if most processes were stuck blocking on a given function | ||
call while accumulating messages forever. | ||
</dd> | ||
</dl> | ||
|
||
</article> | ||
|
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
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
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
Oops, something went wrong.