Koveh API

System Status API

Monitoring service for Docker containers and systemd units

The System Status API provides real-time information about the health and status of the server's infrastructure, including running Docker containers and active systemd services.

Base URL

https://api.koveh.com/system/

Authentication

Bearer Token is required for non-local requests.

Authorization: Bearer <YOUR_API_KEY>

Endpoints

1. Global Status

GET /status

Returns a list of all running Docker containers and active systemd services.

Response Schema:

{
  "docker_containers": [
    {
      "container_id": "...",
      "image": "...",
      "status": "Up 2 hours",
      "names": "ai-service-api"
    }
  ],
  "systemd_services": [
    {
      "unit": "nginx.service",
      "active": "active",
      "sub": "running",
      "description": "A high performance web server"
    }
  ]
}

2. Health Check

GET /health

Basic connectivity check.


Security Note

Access to this API is highly restricted as it exposes infrastructure details. Ensure your API Key has the appropriate permissions.

On this page