{% extends "base.html" %} {% load humanbytes %} {% block title %}Mwmbl Debugging - Memory usage{% endblock %} {% block content %} {# #} {# #} {# #}
Memory typeSize
rss{{ memory_info.rss|human_bytes }}
vms{{ memory_info.vms|human_bytes }}
shared{{ memory_info.shared|human_bytes }}
text{{ memory_info.text|human_bytes }}
lib{{ memory_info.lib|human_bytes }}
data{{ memory_info.data|human_bytes }}
dirty{{ memory_info.dirty|human_bytes }}
uss{{ memory_info.uss|human_bytes }}
pss{{ memory_info.pss|human_bytes }}
swap{{ memory_info.swap|human_bytes }}

{% for t, c in most_common_objects %} {% endfor %}
Most common objectsCount
{{ t }}{{ c }}

{% for t, count, change in growth %} {% endfor %}
Growth objectsCountIncrease
{{ t }}{{ count }}{{ change }}
{% endblock %}