qdrant_collection_info
Retrieve complete configuration and status for a named Qdrant collection, with a clear error if it does not exist.
Instructions
Return full config and status of one collection.
Fails with a clear error if the collection doesn't exist.
Example: {"collection_name": "docs"}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| collection_name | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| config | Yes | Current statistics and configuration of the collection | |
| status | Yes | Current statistics and configuration of the collection | |
| warnings | No | Warnings related to the collection | |
| points_count | No | Approximate number of points (vectors + payloads) in collection. Each point could be accessed by unique id. | |
| update_queue | No | Update queue info | |
| payload_schema | Yes | Types of stored payload | |
| segments_count | Yes | Number of segments in collection. Each segment has independent vector as payload indexes | |
| optimizer_status | Yes | Current statistics and configuration of the collection | |
| indexed_vectors_count | No | Approximate number of indexed vectors in the collection. Indexed vectors in large segments are faster to query, as it is stored in a specialized vector index. |