{% extends "layout.html" %} {% block title %}Dashboard{% endblock %} {% block content %}

Dashboard


Guest Information

Machines

Count: {{ g.api.machines | length }}

    {% for health, machines in g.api.machines | groupby("health") %}
  • {{ health.name | replace('_', ' ') | title }}: {{ machines | length }}
  • {% endfor %}
Mediums

Count: {{ g.api.mediums | length }}

    {% for device_type, mediums in g.api.mediums | groupby("device_type_name") %}
  • {{ device_type }}: {{ mediums | length }}
  • {% endfor %}
Host Information

  • System

    Operating System: {{ g.api.host.operating_system }} {{ g.api.host.os_version }}
    Memory: {{ g.api.host.memory_available }}/{{ g.api.host.memory_size }} MB
    Processors: {{ g.api.host.processor_count }} logical ({{ g.api.host.processor_core_count }} physical) @ {{ g.api.host.get_processor_speed(0) }} MHz
    3D Acceleration: {{ g.api.host.acceleration_3d_available }}

  • Drives

    {% for drive in g.api.host.host_drives | sort(attribute="drive_path") %} Path: {{ drive.drive_path }}
    Model: {{ drive.model }}

    {% endfor %}

  • Network

    {% for network in g.api.host.network_interfaces %} {{ network.name }}: {{ utils.split_pascal_case(network.interface_type) }}
    IP Address: {{ network.ip_address }}
    MAC Address: {{ network.hardware_address }}
    Wireless: {{ network.wireless }}

    {% endfor %} DNS Servers: {{ ', '.join(g.api.host.name_servers) }}

{% endblock %}