{#if $error}
{$error}
{/if} {#if $statusData}
Status {$statusData.services_running ? 'Running' : 'Stopped'}
Version {$statusData.version || 'unknown'}
Uptime {$statusData.uptime}
Running {$statusData.processes?.filter(p => p.status === 'running').length || 0} / {$statusData.processes?.filter(p => p.enabled).length || 0}

Available Modules

{#each $statusData.processes || [] as process} {/each}
{:else if !$error}
Loading status...
{/if}