{% extends "layout.html" %} {% block head %} {{ super() }} {% endblock head %} {% block body %}
返回
{{ host_ret.data.hostname }}
{% for nic_name, nic in host_ret.data.interfaces.iteritems() %} {% endfor %} {% for mountpoint, disk in host_ret.data.disks.iteritems() %} {% endfor %}
NODE ID:     {{ host_ret.data.node_id }}
状态:    
CPU:     {{ host_ret.data.cpu }} 核
内存:     {{ (host_ret.data.memory / 1024 / 1024 / 1024)|int }} GB
网络接口IPMAC
{{ nic_name }}{{ nic.ip }}{{ nic.mac }}
挂载点设备路径磁盘大小使用率
{{ mountpoint }}{{ disk.device }}{{ (disk.total / 1024 / 1024 / 1024) | int }} GB{{ disk.percent }}
数据更新时间:     {{ format_datetime_by_tus(host_ret.data.timestamp * 1000 * 1000) }}
{% endblock body %}