{% extends 'base.html' %} {% block content %}
{{ _("CPU") }}

{{ _('Current CPU usage:') }} {{ container_stats['CPU %'] }}
 

{{ _("View past usage") }}
{{ _("RAM") }}

{{ _('Current Memory usage:') }} {{ container_stats['Memory %'] }}
({{ container_stats['Memory Usage'] }} / {{ container_stats['Memory Limit'] }})

{{ _("View past usage") }}
{{ _('Network I/O') }}
{{ container_stats['Network I/O'] }}
{{ _('Block I/O') }}
{{ container_stats['Block I/O'] }}
{{ _("PIDs") }}
{{ container_stats['PIDs'] }}
{% endblock %}