{% 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
网卡:     {{ nic_name }} | IP: {{ nic.ip }} | MAC: {{ nic.mac }}
挂载点:     {{ mountpoint }} | {{ (disk.total / 1024 / 1024 / 1024) | int }} GB | 使用率: {{ disk.percent }}%
数据更新时间:     {{ format_datetime_by_tus(host_ret.data.timestamp) }}
{% endblock body %}