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

# Pipeline Metrics

> Pipeline performance metrics — durations, success rates, LLM call stats,
agent performance, and queue wait times.

Per-process stats (each gunicorn worker has its own counters).
Resets on process restart. For historical data, use Sentry or the
api_cost_logs table.



## OpenAPI

````yaml /openapi.json get /health/metrics
openapi: 3.1.0
info:
  title: AITasker
  version: 0.1.0
servers: []
security: []
paths:
  /health/metrics:
    get:
      tags:
        - Health
      summary: Pipeline Metrics
      description: |-
        Pipeline performance metrics — durations, success rates, LLM call stats,
        agent performance, and queue wait times.

        Per-process stats (each gunicorn worker has its own counters).
        Resets on process restart. For historical data, use Sentry or the
        api_cost_logs table.
      operationId: pipeline_metrics_health_metrics_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}

````