{% extends 'layout.html' %} {% block content %} {% include 'menu.html' %}
Hostname

{{ host.hostname }}

Last boot : {{ host.boot_time }}
LXC: {{ vlxc }} - Libvirt: {{ vlibvirt }} - Hype: {{ vhype }}
LXC

Up : {{ lxc_up }}

Down : {{ lxc_down }}

VM

Up : {{ vm_up }}

Down : {{ vm_down }}


Monitor
Usage

CPU

{{ full['cpu']['percent'] }}%
user : {{ full['cpu']['time_user'] }} / nice : {{ full['cpu']['time_nice'] }} / system : {{ full['cpu']['time_system'] }} / idle : {{ full['cpu']['time_idle'] }} / iowait : {{ full['cpu']['time_iowait'] }} / irq : {{ full['cpu']['time_irq'] }} / softirq : {{ full['cpu']['time_softirq'] }} / steal : {{ full['cpu']['time_steal'] }} / guest : {{ full['cpu']['time_guest'] }} / guest nice : {{ full['cpu']['time_guest_nice'] }}

MEM

{{ full['mem']['percent'] }}%
total : {{ full['mem']['total'] }} / available : {{ full['mem']['available'] }} / used : {{ full['mem']['used'] }} / free : {{ full['mem']['free'] }} / active : {{ full['mem']['active'] }} / inactive : {{ full['mem']['inactive'] }} / buffers : {{ full['mem']['buffers'] }} / cached : {{ full['mem']['cached'] }} / shared : {{ full['mem']['shared'] }} / slab : {{ full['mem']['slab'] }}

SWAP

{{ full['swap']['percent'] }}%
total : {{ full['swap']['total'] }} / used : {{ full['swap']['used'] }} / free : {{ full['swap']['free'] }} / sin : {{ full['swap']['sin'] }} / sout : {{ full['swap']['sout'] }}

Disks
{% for key in full %} {% if key.startswith('disk_') %}

{{ full[key]['mountpoint'] }}

{{ full[key]['size_percent'] }}%
total : {{ full[key]['size_total'] }} / used : {{ full[key]['size_used'] }} / free : {{ full[key]['size_free'] }} / device : {{ full[key]['device'] }} / fstype : {{ full[key]['fstype'] }} / opt: {{ full[key]['opts'] }} / maxfile : {{ full[key]['maxfile'] }} / maxpath : {{ full[key]['maxpath'] }}
{% endif %} {% endfor %}

Network
{% for key in full %} {% if key.startswith('net_') %} {% endif %} {% endfor %}
NameIPv4Netmask v4IPv6Netmask v6SentReceived
{{ full[key]['name'] }}{{ full[key]['address_v4'] }}{{ full[key]['netmask_v4'] }}{{ full[key]['address_v6'] }}{{ full[key]['netmask_v6'] }}{{ full[key]['bytes_sent'] }}{{ full[key]['bytes_recv'] }}
{% endblock %}