Properties
| Name | Type | Description |
|---|---|---|
| id | string | Collection name |
| shards | array | Shards topology |
| reshardings | array | Ongoing resharding operations |
| shard_transfers | array | Ongoing shard transfers |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/DistributedCollectionTelemetry",
"title": "DistributedCollectionTelemetry",
"type": "object",
"required": [
"id"
],
"properties": {
"id": {
"description": "Collection name",
"type": "string"
},
"shards": {
"description": "Shards topology",
"type": "array",
"items": {
"$ref": "#/components/schemas/DistributedShardTelemetry"
},
"nullable": true
},
"reshardings": {
"description": "Ongoing resharding operations",
"type": "array",
"items": {
"$ref": "#/components/schemas/ReshardingInfo"
},
"nullable": true
},
"shard_transfers": {
"description": "Ongoing shard transfers",
"type": "array",
"items": {
"$ref": "#/components/schemas/ShardTransferInfo"
},
"nullable": true
}
}
}