Qdrant · Schema

TelemetryData

AIArtificial IntelligenceVector Databases

Properties

Name Type Description
id string
app object
collections object
cluster object
requests object
memory object
hardware object
View JSON Schema on GitHub

JSON Schema

qdrant-telemetrydata-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TelemetryData",
  "title": "TelemetryData",
  "type": "object",
  "required": [
    "collections",
    "id"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "app": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/AppBuildTelemetry"
        },
        {
          "nullable": true
        }
      ]
    },
    "collections": {
      "$ref": "#/components/schemas/CollectionsTelemetry"
    },
    "cluster": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/ClusterTelemetry"
        },
        {
          "nullable": true
        }
      ]
    },
    "requests": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/RequestsTelemetry"
        },
        {
          "nullable": true
        }
      ]
    },
    "memory": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/MemoryTelemetry"
        },
        {
          "nullable": true
        }
      ]
    },
    "hardware": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/HardwareTelemetry"
        },
        {
          "nullable": true
        }
      ]
    }
  }
}