Skip to main content
GET
/
health
curl http://127.0.0.1:8005/health
{
  "status": "healthy"
}

Documentation Index

Fetch the complete documentation index at: https://docs.praison.ai/llms.txt

Use this file to discover all available pages before exploring further.

Check the health status of the async jobs server.

Response

status
string
required
Server health status. Returns healthy when the server is operational.
curl http://127.0.0.1:8005/health
{
  "status": "healthy"
}

Usage

Use this endpoint for:
  • Load balancer health checks
  • Kubernetes liveness/readiness probes
  • Monitoring and alerting systems

Kubernetes Example

apiVersion: v1
kind: Pod
spec:
  containers:
  - name: async-jobs
    image: praisonai/jobs-server
    livenessProbe:
      httpGet:
        path: /health
        port: 8005
      initialDelaySeconds: 10
      periodSeconds: 30
    readinessProbe:
      httpGet:
        path: /health
        port: 8005
      initialDelaySeconds: 5
      periodSeconds: 10

See Also