agentOS API Reference - v0.0.1
    Preparing search index...

    Interface RuntimeHealth

    Reply of the observe-only health action. Reading it never boots the VM; the post-mortem buffers survive VM sleep so warnings and crash exits stay readable while booted is false.

    interface RuntimeHealth {
        agentExits: RuntimeAgentExit[];
        booted: boolean;
        sessions: number | null;
        sidecar: RuntimeSidecarInfo | null;
        stderrTail: RuntimeStderrLine[];
        warnings: RuntimeLimitWarning[];
    }
    Index
    agentExits: RuntimeAgentExit[]
    booted: boolean
    sessions: number | null

    Count of sessions with live event subscriptions through this actor since the last wake (not total loaded sessions); null while the VM is down.

    sidecar: RuntimeSidecarInfo | null

    Sidecar descriptor; null while the VM is down.

    stderrTail: RuntimeStderrLine[]