Hostname: {{ server.hostname }}
IPv4 Atual: {{ server.ip }}
{% if server.ipv6 %}
IPv6: {{ server.ipv6 }}
{% endif %}
Sistema: {{ server.os_info }}
Uso de CPU ({{ server.cpu_cores }} vCPUs)
{{ server.cpu_usage_pct }}%
Memória RAM
{{ server.used_ram_gb }} / {{ server.total_ram_gb }} GB
{% set ram_pct = (server.used_ram_gb / server.total_ram_gb * 100) if server.total_ram_gb > 0 else 0 %}
Armazenamento
{{ server.used_disk_gb }} / {{ server.total_disk_gb }} GB
{% set disk_pct = (server.used_disk_gb / server.total_disk_gb * 100) if server.total_disk_gb > 0 else 0 %}
{% if server.listening_ports %}
Portas Ativas no VPS
{% for p in server.listening_ports %}
:{{ p.port }}
{% endfor %}
{% endif %}
Aplicações ativas: {{ server.app_count }}