> ## 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.

# Metrics Endpoint

> E8 (DESIGN §8) — minimal Prometheus text-exposition-format metrics.
No auth: matches healthz/readyz's own k8s/Prometheus-scrape posture
(this repo has no separate scrape-auth mechanism); the body carries only
counts/gauges, never secrets. See app/metrics.py's own module docstring
for exactly which numbers are live vs. honestly-not-yet-wired.



## OpenAPI

````yaml /openapi.json get /v1/metrics
openapi: 3.1.0
info:
  description: Causeloop Platform Backend
  title: Causeloop API
  version: 1.0.0
servers: []
security: []
paths:
  /v1/metrics:
    get:
      tags:
        - ops
      summary: Metrics Endpoint
      description: |-
        E8 (DESIGN §8) — minimal Prometheus text-exposition-format metrics.
        No auth: matches healthz/readyz's own k8s/Prometheus-scrape posture
        (this repo has no separate scrape-auth mechanism); the body carries only
        counts/gauges, never secrets. See app/metrics.py's own module docstring
        for exactly which numbers are live vs. honestly-not-yet-wired.
      operationId: metrics_endpoint_v1_metrics_get
      responses:
        '200':
          content:
            text/plain:
              schema:
                type: string
          description: Successful Response

````