1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
<html>
<head>
<title>trace moodss module</title>
</head>
<body>
<p>This the trace module for the moodss core. Whenever a loaded module issues a message to the user (through the internal moodss core / module interface), a new line in created in the following table:
<pre><img src="trace.gif"></pre>
<p>Data is initially displayed in one empty table, filled as messages from modules arrive. The leftmost column contains row numbers and can be used for sorting in order of arrival. Each new event is assigned a unique row number. The date and time cells are filled at the instant the message is received by the trace module.
<p><b>Module options:</b>
<ul>
<li><i>-m (--modules)</i>
<br>A comma separated list of module names (no blank characters allowed). Only messages from modules included in the list will be displayed. If several instances of a module are loaded, their messages will all be displayed. The list must include straight module names only (no instance numbers allowed).
<li><i>--rows</i>
<br>The maximum number of rows to be kept visible in the table. Older rows are automatically removed as new messages arrive. Default is <b>10</b> rows. <b>0</b> means that all rows are to be kept: use carefully if there are many messages as memory will eventually run out.
</ul>
<p><b>Examples:</b>
<pre>$ moodss random trace --rows 0
$ moodss myvars mystatus cpustats trace -m myvars,mystatus
$ moodss myvars mystatus trace --modules myvars trace --modules mystatus</pre>
</body>
</html>
|