[% IF is_sysadmin AND NOT process.type.match('parent') %]
[% ELSE; '--'; END %]
[% END %]
Definitions (man ps):
%cpu
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.
%mem
ratio of the process's resident set size to the physical
memory on the machine, expressed as a percentage.
vsv
virtual memory size of the process in KiB
1024-byte units). Device mappings are currently excluded;
this is subject to change.
rss
resident set size, the non-swapped physical memory that a
task has used (in kiloBytes).
vsz
virtual memory size. It includes all memory that the process can access,
including memory that is swapped out and memory that is from shared
libraries.
start
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).