> ## Documentation Index
> Fetch the complete documentation index at: https://docs.riftmap.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Health Detailed

> Detailed subsystem health — requires admin API key (X-API-Key header).

Verifies database, Redis broker, Redis state, Celery workers, Redis
memory pressure, and clone-directory disk space.  Rich exception details
are written to the application log at WARN/ERROR level and are NOT
included in the HTTP response body — the body only carries "ok",
"warning: <summary>", or "degraded" per subsystem.



## OpenAPI

````yaml /openapi.json get /health/detailed
openapi: 3.1.0
info:
  description: Change Impact Engine for multi-repo systems
  title: Riftmap
  version: 1.12.3
servers: []
security: []
paths:
  /health/detailed:
    get:
      tags:
        - meta
      summary: Health Detailed
      description: |-
        Detailed subsystem health — requires admin API key (X-API-Key header).

        Verifies database, Redis broker, Redis state, Celery workers, Redis
        memory pressure, and clone-directory disk space.  Rich exception details
        are written to the application log at WARN/ERROR level and are NOT
        included in the HTTP response body — the body only carries "ok",
        "warning: <summary>", or "degraded" per subsystem.
      operationId: health_detailed_health_detailed_get
      responses:
        '200':
          content:
            application/json:
              schema: {}
          description: Successful Response
      security:
        - APIKeyHeader: []
components:
  securitySchemes:
    APIKeyHeader:
      in: header
      name: X-API-Key
      type: apiKey

````