get_cluster_status
Retrieve cluster health and node distribution details in CockroachDB. Specify detailed output for in-depth node information or summary for quick insights.
Instructions
Get cluster health and node distribution.
Args: detailed (bool): If True, returns all node details. If False, returns summary info.
Returns: Details about the cluster's status and how nodes/ranges are distributed or an error message.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
detailed | No |
Input Schema (JSON Schema)
{
"properties": {
"detailed": {
"default": false,
"title": "Detailed",
"type": "boolean"
}
},
"title": "get_cluster_statusArguments",
"type": "object"
}