Skip to main content

Health

Check the health status of PolarGrid edge services.

Health Check

GET /health
Check service health and available features.

Example

# /health is unauthenticated — no Bearer token needed
curl https://api.yto-01.edge.polargrid.ai/health

Response

{
  "status": "healthy",
  "node": "pg-edge-tor-01",
  "runtime": "kata",
  "timestamp": "2026-05-11T16:37:29.110635",
  "features": {
    "dynamic_loading": true,
    "huggingface_support": true
  },
  "backend": {
    "healthy": true,
    "info": {
      "name": "triton",
      "version": "2.67.0",
      "extensions": [
        "classification", "sequence", "model_repository",
        "model_repository(unload_dependents)", "schedule_policy",
        "model_configuration", "system_shared_memory",
        "cuda_shared_memory", "binary_tensor_data",
        "parameters", "statistics", "trace", "logging"
      ]
    }
  }
}

Status Values

StatusDescription
healthyAll systems operational
degradedPartial functionality available
unhealthyService unavailable

Features

FeatureDescription
dynamic_loadingGateway supports loading and unloading models at runtime
huggingface_supportGateway can pull models from the HuggingFace registry

CLI Health Check

You can also check health via the CLI:
# Check all regions
polargrid test health

# Check specific region
polargrid test health --region yto-01