dashboard-react
    Preparing search index...

    Interface NodeInfo

    Normalized node record used by the topology graph and cards.

    interface NodeInfo {
        system_info?: SystemInfo;
        network_interfaces?: NetworkInterfaceInfo[];
        ip_to_interface?: Record<string, string>;
        mactop_info?: MactopInfo;
        last_mactop_update: number;
        friendly_name?: string;
        os_version?: string;
        os_build_version?: string;
        skulk_version?: string;
        skulk_commit?: string;
        thunderbolt_bridge?: boolean;
        rdma_enabled?: boolean;
        rdma_interfaces_present?: boolean;
        syncing?: boolean;
        node_health?: NodeHealth;
    }
    Index

    Properties

    system_info?: SystemInfo
    network_interfaces?: NetworkInterfaceInfo[]
    ip_to_interface?: Record<string, string>
    mactop_info?: MactopInfo
    last_mactop_update: number
    friendly_name?: string
    os_version?: string
    os_build_version?: string
    skulk_version?: string
    skulk_commit?: string
    thunderbolt_bridge?: boolean
    rdma_enabled?: boolean
    rdma_interfaces_present?: boolean
    syncing?: boolean
    node_health?: NodeHealth

    Derived health summary for this node (#388); absent when unknown.