@karmaniverous/jeeves
    Preparing search index...

    Interface StatusResponse

    Standard status response body.

    interface StatusResponse {
        health: Record<string, unknown>;
        name: string;
        status: "healthy" | "degraded" | "unhealthy";
        uptime: number;
        version: string;
    }
    Index

    Properties

    health: Record<string, unknown>

    Component-specific health details.

    name: string

    Component name.

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

    Overall status.

    uptime: number

    Seconds since process start.

    version: string

    Component version.