{% extends "baseTemplate/index.html" %} {% load static %} {% comment %} ============================================================================== CloudPanel — dashboard ------------------------------------------------------------------------------ Rendered by the baseTemplate dashboard view at URL "/". Context variables (all optional — every one has a safe default so the page renders before the backend wires them up): websitesCount databasesCount emailsCount ftpCount int websitesLimit databasesLimit int | "" (package quota) cpuPercent ramPercent diskPercent number 0-100 ramUsedBytes ramTotalBytes int diskUsedBytes diskTotalBytes int cpuHistory ramHistory list[number] (oldest first) historyLabels list[str] services list of {name, label, state, detail} state in: up | down | warn | unknown recentActivity list of {timestamp, user, action, target, level} level in: success | warning | danger | info serverInfo {hostname, os, kernel, uptime, load, ols, python, mariadb} Live refresh: the top-bar poller broadcasts "cp:resources" with the payload of /serverstatus/resourceStatus; this page listens and feeds the chart from it. ============================================================================== {% endcomment %} {% block title %}Dashboard{% endblock %} {% block content %}
{{ CLOUDPANEL.PANEL_NAME|default:"CloudPanel" }} on {{ serverInfo.hostname|default:CLOUDPANEL.PANEL_DOMAIN|default:"cp.a1hosting.net" }} · {{ serverInfo.os|default:"Ubuntu 26.04 LTS" }} · uptime {{ serverInfo.uptime|default:"unknown" }}
Live, sampled every 5 seconds
Root filesystem and RAM allocation
| Load average | {{ serverInfo.load|default:"—" }} |
| Kernel | {{ serverInfo.kernel|default:"—" }} |
| OpenLiteSpeed | {{ serverInfo.ols|default:"—" }} |
| MariaDB | {{ serverInfo.mariadb|default:"—" }} |
| Python | {{ serverInfo.python|default:"—" }} |
systemd units backing the panel
{{ service.label|default:service.name }}
OpenLiteSpeed
MariaDB
PowerDNS
Postfix
Dovecot
Pure-FTPd
Redis
CloudPanel Daemon
Last actions recorded by the panel
| When | User | Action | Target | Result |
|---|---|---|---|---|
| {{ item.timestamp }} | {{ item.user|default:"system" }} | {{ item.action }} | {{ item.target|default:"—" }} | {{ item.level|default:"info"|capfirst }} |
No activity recorded yetActions performed through the panel will appear here. |
||||