Qdrant · Schema

PayloadIndexTelemetry

AIArtificial IntelligenceVector Databases

Properties

Name Type Description
field_name string
index_type string
points_values_count integer The amount of values indexed for all points.
points_count integer The amount of points that have at least one value indexed.
histogram_bucket_size integer
View JSON Schema on GitHub

JSON Schema

qdrant-payloadindextelemetry-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PayloadIndexTelemetry",
  "title": "PayloadIndexTelemetry",
  "type": "object",
  "required": [
    "index_type",
    "points_count",
    "points_values_count"
  ],
  "properties": {
    "field_name": {
      "type": "string",
      "nullable": true
    },
    "index_type": {
      "type": "string"
    },
    "points_values_count": {
      "description": "The amount of values indexed for all points.",
      "type": "integer",
      "format": "uint",
      "minimum": 0
    },
    "points_count": {
      "description": "The amount of points that have at least one value indexed.",
      "type": "integer",
      "format": "uint",
      "minimum": 0
    },
    "histogram_bucket_size": {
      "type": "integer",
      "format": "uint",
      "minimum": 0,
      "nullable": true
    }
  }
}