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

# Queues Health Endpoint

> G1 (E8, SPEC §9/§6.2) — per-stream {name, length, lag, pending,
dlq_depth} + consumer liveness. HONEST DEGRADATION is the entire point
of this endpoint (see app/services/queue_health.py's own module
docstring): `QUEUE_INGEST != "redis"` or an unreachable Redis returns
`{"enabled": false, "reason": ...}` — NEVER a zeroed-out healthy-looking
shape. No staff-role floor beyond the router-level `require_staff()` —
an ops read, not a mutation.



## OpenAPI

````yaml /openapi.json get /v1/provisioning/queues/health
openapi: 3.1.0
info:
  description: Causeloop Platform Backend
  title: Causeloop API
  version: 1.0.0
servers: []
security: []
paths:
  /v1/provisioning/queues/health:
    get:
      tags:
        - provisioning-portal
      summary: Queues Health Endpoint
      description: |-
        G1 (E8, SPEC §9/§6.2) — per-stream {name, length, lag, pending,
        dlq_depth} + consumer liveness. HONEST DEGRADATION is the entire point
        of this endpoint (see app/services/queue_health.py's own module
        docstring): `QUEUE_INGEST != "redis"` or an unreachable Redis returns
        `{"enabled": false, "reason": ...}` — NEVER a zeroed-out healthy-looking
        shape. No staff-role floor beyond the router-level `require_staff()` —
        an ops read, not a mutation.
      operationId: queues_health_endpoint_v1_provisioning_queues_health_get
      responses:
        '200':
          content:
            application/json:
              schema: {}
          description: Successful Response
      security:
        - HTTPBearer: []
components:
  securitySchemes:
    HTTPBearer:
      scheme: bearer
      type: http

````