{% load mathfilters %}
{% if skeleton %}

CPU Utilization

/ CPU
—%
Used
Free
{% else %}

CPU Utilization

{{ pcpu.usage|floatformat:1 }} / {{ pcpu.total }} CPU
{{ pcpu.used_percentage|floatformat:1 }}%
Used {{ pcpu.usage|floatformat:1 }} CPU
Free {{ pcpu.free }} CPU
{% endif %}
{% if skeleton %}

RAM Utilization

/ GB
—%
Used
Free
{% else %}

RAM Utilization

{{ pram.usage|convert_bytes }} / {{ pram.total|convert_bytes }} GB
{{ pram.used_percentage|floatformat:1 }}%
Used {{ pram.usage|convert_bytes }} GB
Free {{ pram.free|convert_bytes }} GB
{% endif %}
{% if skeleton %}

Instances

active / stopped
Most Used Flavor
Avg. vCPU/VM
Density
{% else %}

Instances

{{ vm.active }} active / {{ vm.stopped }} stopped
{{ vm.count }}
Most Used Flavor
{{ flavors.first_common_flavor.name }}
Avg. vCPU/VM
{{ vm.avg_cpu|floatformat:1 }}
Density
{{ vm.density|floatformat:1 }}/host
{% endif %}