Overview

System status at a glance

{#if loading}
{#each Array(4) as _}
{/each}
{:else}

CPU

{stats?.cpu_percent || 0}%

{stats?.cpu_count || 0} cores ยท Load {stats?.load_avg?.[0] || 0}

Memory

{stats?.memory?.percent || 0}%

{fmtBytes(stats?.memory?.used)} / {fmtBytes(stats?.memory?.total)}

Disk

{stats?.disk?.percent || 0}%

{fmtBytes(stats?.disk?.free)} free of {fmtBytes(stats?.disk?.total)}

Uptime

{stats?.uptime || "โ€”"}

{stats?.platform || "โ€”"}

Docker Containers

{containers.filter(c => c.status === "running").length}/{containers.length} running
{#each containers.slice(0, 5) as c}
{c.name}
{c.image}
{/each} {#if containers.length > 5}

+{containers.length - 5} more

{/if}

Git Repositories

{repos.length} repos
{#each repos.slice(0, 5) as r}
{r.name}
{r.language || "โ€”"}
{/each} {#if repos.length > 5}

+{repos.length - 5} more

{/if}
{#if stats?.volumes?.length}

Storage Usage

{#each stats.volumes as vol}
{vol.mount} {vol.percent}%
{fmtBytes(vol.used)} used {fmtBytes(vol.free)} free
{/each}
{/if} {/if}