{% extends "layout.html" %} {% block head %} {{ super() }} {% endblock head %} {% block body %}
返回
磁盘信息
UUID:     {{ disk.uuid }}
名称:     {{ disk.remark }}
状态:     {{ format_disk_state(disk.state)|safe }}
磁盘性别:     {% if disk.sequence == 0 %} 系统盘 {% else %} 数据盘 {% endif %}
磁盘容量:     {{ disk.size }} GB
所属虚拟机:     {% if disk.sequence != -1 %} {{ guest.label }}/{{ guest.remark }} {% else %} {% endif %}
设备路径:     {% if disk.sequence >= 0 %} {{ disk.device }} {% endif %}
磁盘性能配额
IOPS IOPS 读 IOPS 写 IOPS 桶宽 IOPS 桶高
{{ disk.iops }} {{ disk.iops_rd }} {{ disk.iops_wr }} {{ disk.iops_max }} {{ disk.iops_max_length }} 秒
BPS BPS 读 BPS 写 BPS 桶宽 BPS 桶高
{{ (disk.bps / 1024 / 1024) | int }} MiB {{ (disk.bps_rd / 1024 / 1024) | int }} MiB {{ (disk.bps_wr / 1024 / 1024) | int }} MiB {{ (disk.bps_max / 1024 / 1024) | int }} MiB {{ disk.bps_max_length }} 秒
创建时间:     {{ format_datetime_by_tus(disk.create_time) }}
{% endblock body %}