{% extends "layout.html" %} {% block title %}{{ _('Dashboard') }}{% endblock %} {% block content %}
CPU Load

{{ stats.cpu }}%

Avg
RAM Usage

{{ stats.ram }}%

{{ (stats.ram_used / 1024 / 1024 / 1024)|round(2) }} GB / {{ (stats.ram_total / 1024 / 1024 / 1024)|round(2) }} GB
Storage

{{ stats.disk }}%

{{ (stats.disk_used / 1024 / 1024 / 1024)|round(2) }} GB / {{ (stats.disk_total / 1024 / 1024 / 1024)|round(2) }} GB
Network Traffic

{% if stats.speed_recv > 1024*1024 %} {{ (stats.speed_recv / 1024 / 1024)|round(2) }} MB/s {% elif stats.speed_recv > 1024 %} {{ (stats.speed_recv / 1024)|round(2) }} KB/s {% else %} {{ stats.speed_recv|round(2) }} B/s {% endif %}

Live Downlink

{% if stats.speed_sent > 1024*1024 %} {{ (stats.speed_sent / 1024 / 1024)|round(2) }} MB/s {% elif stats.speed_sent > 1024 %} {{ (stats.speed_sent / 1024)|round(2) }} KB/s {% else %} {{ stats.speed_sent|round(2) }} B/s {% endif %}

Live Uplink

{{ (stats.net_recv / 1024 / 1024 / 1024)|round(2) }} GB

Incoming

{{ (stats.net_sent / 1024 / 1024 / 1024)|round(2) }} GB

Outgoing
Recent Alerts
{% for alert in alerts %}
{{ alert.subject }}
{{ alert.timestamp|format_time('%H:%M') }}

{{ alert.message }}

{% else %}

No recent alerts.

{% endfor %}
System Information
OS Distribution

{{ stats.os_info }}

Load Average

{{ stats.load }}

RAID Status

{{ stats.raid }}

Web Server

Nginx

{% endblock %}