{% extends "memory/memory_layout.html" %} {% load url from future %} {% load dashboard_extras staticfiles %} {% block page_name %}Per-process memory consumption for {{ arch }} on {{ machine }}{% endblock %} {% block extra_headers %} {% endblock extra_headers %} {% block content %}

Per-process memory consumption for {{ arch }} on {{ machine }}

{% for process in processes %}

{{ process.process }}

{% endfor %} {% comment %} {% for machine in machines %}

{{ machine.name }}

{% if machine.has_image %}

Image

{% with 'pss' as metric %}

{{ metric }}

{% endwith %} {% with 'meminfo' as metric %}

{{ metric }}

{% endwith %} {% endif %} {% if machine.has_upgrade %}

Upgrade

{% with 'pss' as metric %}

{{ metric }}

{% endwith %} {% with 'meminfo' as metric %}

{{ metric }}

{% endwith %} {% endif %}
{% endfor %} {% endcomment %}
{% endblock %}