| Interface | Rx Rate | Tx Rate | Rx Total | Tx Total |
|---|---|---|---|---|
| {{ net.interface }} | {{ formatRate(net.rx_rate) }} | {{ formatRate(net.tx_rate) }} | {{ formatBytes(net.rx_bytes) }} | {{ formatBytes(net.tx_bytes) }} |
| Filesystem | Size | Used | Avail | Use% | Mounted on |
|---|---|---|---|---|---|
| {{ disk.name }} | {{ formatBytes(disk.total) }} | {{ formatBytes(disk.used) }} | {{ formatBytes(disk.total - disk.used) }} | {{ diskPct(disk) }}% | {{ disk.mount_points[0] }} |
| {{ j === disk.mount_points.length - 2 ? '\u2514\u2500' : '\u251C\u2500' }}{{ mp }} | |||||
| PID | GPU | Name | User | VRAM | Type |
|---|---|---|---|---|---|
| {{ p.pid }} | {{ p.gpu_index }} | {{ p.name }} | {{ p.user }} | {{ formatBytes(p.gpu_memory) }} | {{ p.process_type }} |
| Name | Image | Status | CPU% | Memory | Net I/O | Ports |
|---|---|---|---|---|---|---|
| {{ c.name }} | {{ c.image }} | {{ c.state }} | {{ (c.cpu_percent || c.cpu_pct || 0).toFixed(1) }}% | {{ formatBytes(c.memory_used || c.mem_usage || 0) }} | {{ formatBytes(c.net_rx) }} / {{ formatBytes(c.net_tx) }} |
| Port{{ portSort==='port' ? (portAsc?' \u25B2':' \u25BC') : '' }} | Proto | PID{{ portSort==='pid' ? (portAsc?' \u25B2':' \u25BC') : '' }} | Name{{ portSort==='name' ? (portAsc?' \u25B2':' \u25BC') : '' }} | User | CPU% | MEM | Bind | Command | |
|---|---|---|---|---|---|---|---|---|---|
| {{ p.port }} | {{ p.protocol }} | {{ p.pid }} | {{ p.name }} | {{ p.user }} | {{ p.cpu_usage.toFixed(1) }} | {{ formatBytes(p.memory_bytes) }} | {{ p.bind_address }} |
| PID{{ procSort==='pid' ? (procAsc?' \u25B2':' \u25BC') : '' }} | Name{{ procSort==='name' ? (procAsc?' \u25B2':' \u25BC') : '' }} | User{{ procSort==='user' ? (procAsc?' \u25B2':' \u25BC') : '' }} | CPU%{{ procSort==='cpu_usage' ? (procAsc?' \u25B2':' \u25BC') : '' }} | MEM%{{ procSort==='memory_usage' ? (procAsc?' \u25B2':' \u25BC') : '' }} | MEM{{ procSort==='memory_bytes' ? (procAsc?' \u25B2':' \u25BC') : '' }} | Status |
|---|---|---|---|---|---|---|
| {{ p.pid }} | {{ p.name }} | {{ p.user }} | {{ p.cpu_usage.toFixed(1) }} | {{ p.memory_usage.toFixed(1) }} | {{ formatBytes(p.memory_bytes) }} | {{ p.status }} |