uipath-cli
latest
false
UiPath CLI ユーザー ガイド
- 概要
- はじめに
- 概念
- UiPath CLI を使用する
- 使用ガイド
- CI/CD レシピ
- コマンド リファレンス
- 概要
- 終了コード
- グローバル オプション
- uip codedagent
- uip coder
- uip context-grounding
- uip docsai
- uip function
- uip guardrails
- uip llm-configuration
- uip llm-gateway
- uip model-hub
- add-test-data-entity
- テスト データのキューを追加
- 追加-テスト-データ-バリエーション
- 分析
- 開発
- プロジェクトを作成
- 差分
- アクティビティを検索
- GET-ANALYZER-RULES
- get-default-activity-xaml
- エラーを取得
- 手動テスト用のテスト ケースを取得
- 手動テストステップを取得
- get-library-object-repository
- get-object-repository
- get-versions
- Get-workflow-example
- indicate-application
- 要素を示す
- inspect-package
- install-data-fabric-entities
- パッケージのインストールまたは更新
- list-data-fabric-entities
- list-instances
- list-workflow-examples
- パッケージ化
- パブリッシュ
- remote
- 元に戻す
- run, debug & execution
- ファイル名を実行
- 検索テンプレート
- スタートスタジオ
- 実行を停止
- tm
- UIA
- uip tasks
- uip traces
- uip traces feedback
- 移行
- 参照とサポート
重要 :
このコンテンツは機械翻訳によって処理されています。
新しいコンテンツの翻訳は、およそ 1 ~ 2 週間で公開されます。
Syntax and options for `uip maestro bpmn incident`, which reads tenant-wide or single-record incidents raised during Maestro BPMN process execution.
uip maestro bpmn incident reads incidents — unhandled errors raised during Maestro process execution — either as tenant-wide summaries or as a single record by ID. The command name is singular (incident) even though the file and sidebar entry say incidents. It's registered under the bpmn branch — there is no bare uip maestro incident.
すべてのサブコマンドには uip login が必要であり、 グローバルオプションが適用されます。終了コードは 標準コントラクトに従います。
概要
uip maestro bpmn incident summary [--folder-key <key>] [-l <limit>] [--offset <n>] [--process-key <key>] [--status <status>] [--severity <severity>]
uip maestro bpmn incident get <incident-id> -f, --folder-key <key>
uip maestro bpmn incident summary [--folder-key <key>] [-l <limit>] [--offset <n>] [--process-key <key>] [--status <status>] [--severity <severity>]
uip maestro bpmn incident get <incident-id> -f, --folder-key <key>
インシデントのスコープが特定のプロセスまたはインスタンスである場合は、以下を使用します。
uip maestro bpmn processes incidents <process-key>— 1 つのプロセスに対するすべてのインシデント。uip maestro bpmn instance incidents <instance-id>— 1 つのインスタンスのすべてのインシデント。
uip maestro bpmn incident summary
Get a rollup of incidents across Maestro processes.
引数
設定はありません。
オプション
| オプション | 説明 |
|---|---|
--folder-key <key> | Folder key. Optional — omit for a tenant-wide rollup. |
-l, --limit <number> | 返すアイテムの数 (1-10000)。 |
--offset <number> | Number of items to skip (0-1000000). Default 0. |
--process-key <process-key> | プロセス キーでフィルター処理します。 |
--status <status> | Filter by incident status. |
--severity <severity> | Filter by incident severity. |
データシェイプ (--output json)
{
"Code": "IncidentSummary",
"Data": [ /* array of incident summaries */ ]
}
{
"Code": "IncidentSummary",
"Data": [ /* array of incident summaries */ ]
}
uip maestro bpmn incident get
ID で 1 つのインシデントを取得します。
引数
<incident-id>(必須) — インシデント ID。自動的に URL エンコードされます。
オプション
| オプション | 説明 |
|---|---|
-f, --folder-key <key> | Folder key. Required. |
データシェイプ
{
"Code": "IncidentGet",
"Data": { /* incident details */ }
}
{
"Code": "IncidentGet",
"Data": { /* incident details */ }
}
例
# Tenant-wide rollup
uip maestro bpmn incident summary
# Filter by status and severity, paginated
uip maestro bpmn incident summary --status Open --severity High --limit 100
# Extract a terse view
uip maestro bpmn incident summary --output-filter "[*].{processKey:processKey,count:incidentCount}"
# Fetch one
uip maestro bpmn incident get "inc_abcdef1234" --folder-key <folder-key>
# Tenant-wide rollup
uip maestro bpmn incident summary
# Filter by status and severity, paginated
uip maestro bpmn incident summary --status Open --severity High --limit 100
# Extract a terse view
uip maestro bpmn incident summary --output-filter "[*].{processKey:processKey,count:incidentCount}"
# Fetch one
uip maestro bpmn incident get "inc_abcdef1234" --folder-key <folder-key>
参照
uip maestro bpmn instance incidents— 1 つのインスタンスのインシデントuip maestro bpmn processes incidents— 1 つのプロセス定義のインシデントuip maestro bpmn instance retry— エラーが発生したインスタンスを修正する- Maestro の概要