RSS Git Download  Clone
Raw Blame History
  [% META title = 'Resources » Process Status' -%]

<!-- BEGIN [% template.name %] -->
	[% # PROCESS dumper.tt dump = data %]
	
	<h3>Process status [[% cmd %]]</h3>
	
	[% headers = [ 'user' 'pid' 'cpu' '%mem' 'vsv' 'rss' 'start' 'time' 'cmd' ] %]
	<table class="indent">
		<tr>
			[% FOREACH h IN headers %]
			<th>[% h %]</th>
			[% END %]
		</tr>
		[% FOREACH row IN data %]
			<tr>
			[% FOREACH col IN row %]<td>[% col %]</td>[% END %]
			</tr>
		[% END %]
	</table>
    
	<form method="get" action="[% c.query.self_url %]">
	<p>
		[% site.html.back_button %]
		<input type='submit' value='Refresh' name='.submit' class='button' />
	</p>
    </form>

	<h4>Definitions (man ps):</h4>
	<dl>
		<dt>%cpu</dt>
		<dd>cpu utilization of the process in "##.#" format.
			Currently, it is the CPU time used divided by the time the
			process has been running (cputime/realtime ratio),
			expressed as a percentage. It will not add up to 100%
			unless you are lucky.</dd>
		<dt>%mem</dt>
		<dd>ratio of the process's resident set size  to the physical
			memory on the machine, expressed as a percentage.</dd>
		<dt>vsv</dt>
		<dd>virtual memory size of the process in KiB
			1024-byte units). Device mappings are currently excluded;
			this is subject to change.</dd>
		<dt>rss</dt>
		<dd>resident set size, the non-swapped physical memory that a
			task has used (in kiloBytes).</dd>
		<dt>start</dt>
		<dd>time the command started. If the process was started less
			than 24 hours ago, the output format is "HH:MM:SS", else
			it is "  mmm dd" (where mmm is a three-letter month name).</dd>
		<dt>time</dt>
		<dd>cumulative CPU time, "[dd-]hh:mm:ss" format.</dd>
	</dl>
<!-- END [% template.name %] -->