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

# Jobs Health Check

Check the health of the jobs processing system.

## Response

<ResponseField name="status" type="string">
  Health status: `healthy`, `degraded`, `unhealthy`
</ResponseField>

<ResponseField name="queueSize" type="number">
  Number of jobs currently in queue
</ResponseField>

<ResponseField name="processing" type="number">
  Number of jobs currently being processed
</ResponseField>

<ResponseField name="avgProcessingTime" type="number">
  Average processing time in milliseconds (last 100 jobs)
</ResponseField>

<ResponseField name="failureRate" type="number">
  Failure rate as percentage (0-100)
</ResponseField>

<ResponseExample>
  ```json theme={null}
  {
    "status": "healthy",
    "queueSize": 5,
    "processing": 2,
    "avgProcessingTime": 1250,
    "failureRate": 0.5
  }
  ```
</ResponseExample>
