Vana SDK - v2.2.2
    Preparing search index...

    Interface HealthStatus

    Health status for the system.

    interface HealthStatus {
        status: "healthy" | "degraded" | "unhealthy";
        timestamp: number;
        checks: {
            atomicStore: ComponentHealth;
            operationStore: ComponentHealth;
            blockchain: ComponentHealth;
            nonces?: NonceHealth[];
            queue?: QueueHealth;
        };
        errors?: string[];
    }
    Index

    Properties

    status: "healthy" | "degraded" | "unhealthy"

    Overall health status

    timestamp: number

    Timestamp of the check

    checks: {
        atomicStore: ComponentHealth;
        operationStore: ComponentHealth;
        blockchain: ComponentHealth;
        nonces?: NonceHealth[];
        queue?: QueueHealth;
    }

    Individual component checks

    errors?: string[]

    Any error messages