summaryrefslogtreecommitdiffstats
path: root/venv/lib/python3.9/site-packages/pympler/templates/index.tpl
blob: 21e6b6246eb164caf16c133e49fd5a93a193576f (plain) (blame)
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
%include('header', category='Overview', title='Overview')

%from pympler.util.stringutils import pp

<h1>Python application memory profile</h1>

<h2>Process overview</h2>

<table class="tdata">
    <tbody>
    <tr>
        <th>Virtual size:</th>
        <td class="num">{{pp(processinfo.vsz)}}</td>
    </tr>
    <tr>
        <th>Physical memory size:</th>
        <td class="num">{{pp(processinfo.rss)}}</td>
    </tr>
    <tr>
        <th>Major pagefaults:</th>
        <td class="num">{{processinfo.pagefaults}}</td>
    </tr>
    </tbody>
</table>

%include('footer')