{% extends 'syspanel/base.html' %} {% load i18n sizeformat %} {% block title %}Usage Overview{% endblock %} {% block page_header %} {# to make searchable false, just remove it from the include statement #} {% include "horizon/common/_page_header.html" with title=_("System Panel Overview") %} {% endblock page_header %} {% block syspanel_main %} {% if external_links %}

{% trans "Monitoring" %}:

{% endif %}

{% trans "Select a month to query its usage" %}:

{{ dateform.date }}

{% trans "Active Instances" %}: {{ global_summary.total_active_instances|default:'-' }} {% trans "This month's VCPU-Hours" %}: {{ global_summary.total_cpu_usage|floatformat|default:'-' }} {% trans "This month's GB-Hours" %}: {{ global_summary.total_disk_usage|floatformat|default:'-' }}

{% if usage_list %}
{% trans "Download CSV" %} »

{% trans "Server Usage Summary" %}

{% for usage in usage_list %} {% endfor %} {% endif %} {% endblock %}
{% trans "Tenant" %} {% trans "Instances" %} {% trans "VCPUs" %} {% trans "Disk" %} {% trans "RAM" %} {% trans "VCPU CPU-Hours" %} {% trans "Disk GB-Hours" %}
{{ usage.tenant_id }} {{ usage.total_active_instances }} {{ usage.total_active_vcpus }} {{ usage.total_active_disk_size|diskgbformat }} {{ usage.total_active_ram_size|mbformat }} {{ usage.total_cpu_usage|floatformat }} {{ usage.total_disk_usage|floatformat }}