Dashboard

Total Rooms

{{ stats.total_rooms }}
Active: {{ total_rooms }}

Connected Clients

{{ stats.total_clients }}
Streaming: {{ stats.total_streams }}

CPU Usage

{{ stats.cpu_usage }}%
Cores: {{ stats.system.cpu_count if stats.system else 'N/A' }}

Memory Usage

{{ stats.memory_usage }}%
{% if stats.system %} {{ ((stats.system.memory_total - stats.system.memory_available) / 1024 / 1024 / 1024)|round(1) }} GB used {% else %} 0 GB used {% endif %}
{% if rooms %}
{% for room in rooms %} {% endfor %}
ID Name Clients Max Connections Created By Status Actions
{{ room.id }} {{ room.name }} {{ room.clients_count }} {% if room.active_streams > 0 %} ({{ room.active_streams }} streaming) {% endif %} {{ room.max_connections }} {{ room.created_by }} Active
{% else %}

No rooms created yet. Create your first room!

{% endif %}

System Information

Server Uptime

Loading...
Since {{ stats.start_time }}

Server Address

{{ server_host }}:{{ server_port }}
WebSocket: ws://{{ server_host }}:{{ server_port }}

API Status

Online
All systems operational