📊status
- プラグイン
- zilliz
- ソース
- GitHub で見る ↗
説明
次のような場合に使用: ユーザーが現在の Zilliz Cloud 環境の包括的な概要(コンテキスト、クラスターの詳細、データベース、および統計情報を含むコレクション)を確認したいとき。
原文を表示
Use when the user wants a comprehensive overview of their current Zilliz Cloud environment — context, cluster details, databases, and collections with stats.
ユースケース
- ✓Zilliz Cloud環境の包括的な概要を確認したいとき
- ✓クラスター詳細を確認したいとき
- ✓データベース情報を確認したいとき
- ✓コレクション統計情報を確認したいとき
本文(日本語訳)
ユーザーの現在の Zilliz Cloud 環境のステータス概要を収集して表示します。構造化データを取得するために --output json オプション付きでコマンドを実行し、整形されたサマリーを提示します。
ステップ 1: 前提条件の確認
CLI がインストールされており、ユーザーがログイン済みであることを確認します:
zilliz auth status
セットアップが完了していない場合は、先に quickstart スキルを使用してください。
ステップ 2: 現在のコンテキストの表示
zilliz context current --output json
コンテキストが設定されていない場合は、zilliz context set --cluster-id <id> の実行を提案してください。
ステップ 3: クラスターの詳細
コンテキストから取得したクラスター ID を使用します:
zilliz cluster describe --cluster-id <cluster-id> --output json
表示項目: クラスター名、ステータス、プラン、リージョン。
ステップ 4: データベース一覧の表示
zilliz database list --output json
ステップ 5: コレクションのサマリー
ステップ 4 で取得した各データベースについて、コレクション情報を収集します:
zilliz collection list --database <db-name> --output json
各コレクションについて、統計情報およびインデックス情報を収集します:
zilliz collection get-stats --name <name> --database <db-name> --output json
zilliz collection get-load-state --name <name> --database <db-name> --output json
zilliz index list --collection <name> --database <db-name> --output json
ステップ 6: サマリーの提示
結果を読みやすいサマリー形式で整形します:
Cluster: <name> (<cluster-id>) Status: RUNNING | Region: <region> | Plan: <plan>
各データベースについて、そのコレクションを表示します:
Database: <db-name>
| コレクション | 行数 | ロード状態 | インデックス |
|---|---|---|---|
| my_collection | 10,000 | Loaded | vector_idx (AUTOINDEX) |
| ... | ... | ... | ... |
クラスターが一時停止中の場合は、データ操作が利用できない旨の警告を表示してください。
原文(English)を表示
Gather and display a status overview of the user's current Zilliz Cloud environment. Run commands with --output json for structured data, then present a formatted summary.
Step 1: Check Prerequisites
Verify CLI is installed and user is logged in:
zilliz auth status
If not set up, use the quickstart skill first.
Step 2: Show Current Context
zilliz context current --output json
If no context is set, suggest running zilliz context set --cluster-id <id>.
Step 3: Cluster Details
Using the cluster ID from context:
zilliz cluster describe --cluster-id <cluster-id> --output json
Present: cluster name, status, plan, region.
Step 4: Database List
zilliz database list --output json
Step 5: Collections Summary
For each database returned in Step 4, gather collection information:
zilliz collection list --database <db-name> --output json
For each collection, gather stats and index info:
zilliz collection get-stats --name <name> --database <db-name> --output json
zilliz collection get-load-state --name <name> --database <db-name> --output json
zilliz index list --collection <name> --database <db-name> --output json
Step 6: Present Summary
Format the results as a readable summary:
Cluster: <name> (<cluster-id>) Status: RUNNING | Region: <region> | Plan: <plan>
For each database, show its collections:
Database: <db-name>
| Collection | Rows | Load State | Indexes |
|---|---|---|---|
| my_collection | 10,000 | Loaded | vector_idx (AUTOINDEX) |
| ... | ... | ... | ... |
If the cluster is suspended, show a warning that data operations are unavailable.
原文・著作権は Anthropic および各プラグイン作者に帰属します。日本語訳は Claude API による自動翻訳です。