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