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

# Cluster Stats

> Reference for merged 0.6.0 source. The latest verified binary release is 0.5.5; use your Engine’s /api/openapi.json for its installed contract.



## OpenAPI

````yaml /engine/openapi.json get /api/cluster/stats
openapi: 3.1.0
info:
  title: nerditd
  version: 0.6.0
  description: >-
    Current source interface (0.6.0); verify your installed Engine version. This
    is not a claim that 0.6.0 is released.
servers:
  - url: http://127.0.0.1:9321
    description: Default local Engine; use your configured endpoint.
security: []
paths:
  /api/cluster/stats:
    get:
      tags:
        - Cluster
      summary: Cluster Stats
      description: >-
        Reference for merged 0.6.0 source. The latest verified binary release is
        0.5.5; use your Engine’s /api/openapi.json for its installed contract.
      operationId: get_cluster_stats
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ClusterStats'
          description: HTTP 200 response
components:
  schemas:
    ClusterStats:
      properties:
        gpus_total:
          type: integer
          title: Gpus Total
        gpus_in_use:
          type: integer
          title: Gpus In Use
        gpus_avg_utilization:
          type: number
          title: Gpus Avg Utilization
        services_up:
          type: integer
          title: Services Up
          default: 0
        daemon_uptime_seconds:
          type: integer
          title: Daemon Uptime Seconds
        daemon_version:
          type: string
          title: Daemon Version
      type: object
      required:
        - gpus_total
        - gpus_in_use
        - gpus_avg_utilization
        - daemon_uptime_seconds
        - daemon_version
      title: ClusterStats

````