summaryrefslogtreecommitdiff
path: root/obbenchlib/templates
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2016-03-13 17:17:56 +0200
committerLars Wirzenius <liw@liw.fi>2016-03-13 17:17:56 +0200
commitad95b439e7b48ef459f68fbec34ac7c4b459ef2e (patch)
tree2effc095806dec1c0f3586f23b103d4a5f70f9bf /obbenchlib/templates
parent30847030b02ad8d3323c1bd999d04728b8679ada (diff)
downloadobnam-benchmarks-ad95b439e7b48ef459f68fbec34ac7c4b459ef2e.tar.gz
Report VmRSS values for Obnam
Diffstat (limited to 'obbenchlib/templates')
-rw-r--r--obbenchlib/templates/benchmark.j28
1 files changed, 6 insertions, 2 deletions
diff --git a/obbenchlib/templates/benchmark.j2 b/obbenchlib/templates/benchmark.j2
index de5c10a..7666416 100644
--- a/obbenchlib/templates/benchmark.j2
+++ b/obbenchlib/templates/benchmark.j2
@@ -15,9 +15,11 @@
<th>date</th>
<th>commit</th>
{% for step_name in step_names %}
- <th>{{ step_name }}</th>
+ <th>{{ step_name }}<br>time</th>
+ <th>&nbsp;<br>VmRSS</th>
{% endfor %}
- <th>total</th>
+ <th>total<br>time</th>
+ <th>&nbsp;<br>VmRSS</th>
</tr>
{% for row in table_rows %}
<tr>
@@ -29,8 +31,10 @@
{{ '%.1f'|format(step.duration) }}
</a>
</td>
+ <td>{{ step.vmrss }}</td>
{% endfor %}
<td>{{ '%.1f'|format(row.total) }}</td>
+ <td>{{ '%d'|format(row.vmrss_max) }}</td>
</tr>
{% endfor %}
</table>