diff options
Diffstat (limited to 'docs/html/guide/developing/tools/dmtracedump.jd')
-rw-r--r-- | docs/html/guide/developing/tools/dmtracedump.jd | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/docs/html/guide/developing/tools/dmtracedump.jd b/docs/html/guide/developing/tools/dmtracedump.jd new file mode 100644 index 0000000..492a049 --- /dev/null +++ b/docs/html/guide/developing/tools/dmtracedump.jd @@ -0,0 +1,64 @@ +page.title=dmtracedump +@jd:body + + + <p><code>dmtracedump</code> is a tool that gives you an alternate way of generating + graphical call-stack diagrams from trace log files (instead of using Traceview).</p> + + <p>This document is a reference to the available command line options. For more information on generating trace + logs, see <a href="{@docRoot}guide/developing/debugging/debugging-tracing.html">Profiling with + Traceview and dmtracedump</a>.</p> + + <p>The usage for <code>dmtracedump</code> is:</p> + <pre> +dmtracedump [-ho] [-s sortable] [-d trace-base-name] [-g outfile] <trace-base-name> +</pre> + + <p>The tool then loads trace log data from <code><trace-base-name>.data</code> and + <trace-base-name>.key. The table below lists the options for dmtracedump.</p> + + <table> + <tr> + <th>Option</th> + + <th>Description</th> + </tr> + + <tr> + <td><nobr><code>-d <em><trace-base-name></em></code></nobr></td> + + <td>Diff with this trace name</td> + </tr> + + <tr> + <td><code>-g <em><outfile></em></code></td> + + <td>Generate output to <outfile></td> + </tr> + + <tr> + <td><code>-h</code></td> + + <td>Turn on HTML output</td> + </tr> + + <tr> + <td><code>-o</code></td> + + <td>Dump the trace file instead of profiling</td> + </tr> + + <tr> + <td><code>-d <em><trace-base-name></em></code></td> + + <td>URL base to the location of the sortable javascript file</td> + </tr> + + <tr> + <td><code>-t <percent></code></td> + + <td>Minimum threshold for including child nodes in the graph (child's inclusive time as a + percentage of parent inclusive time). If this option is not used, the default threshold is + 20%.</td> + </tr> + </table>
\ No newline at end of file |