%include('header', category='Process', title='Process Information') %from pympler.util.stringutils import pp

Process information

%for key, value in info.os_specific: %end
Virtual size: {{pp(info.vsz)}}
Physical memory size: {{pp(info.rss)}}
Major pagefaults: {{info.pagefaults}}
{{key}}: {{value}}

Thread information

%for tinfo in threads: %end
ID Name Daemon
{{tinfo.ident}} {{tinfo.name}} {{tinfo.daemon}}

Thread stacks

%for tinfo in threads:
Traceback for thread {{tinfo.name}}
%end
%include('footer')