- 概要
- はじめに
- 概念
- 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
- 移行
- 参照とサポート
Syntax and options for `uip tm perf-scenario report`, which renders authored performance reports and comparisons and returns an in-app view URL.
uip tm perf-scenario report renders a report you author yourself (markdown or HTML) into a hosted view and returns its in-app view URL. Neither verb generates report content from execution data on its own.
This page is part of the uip tm perf-scenario command group — see that page for scenario lifecycle verbs (create, get, list, execute, stop, list-dry-run-reports) and shared concepts.
概要
uip tm perf-scenario report generate --execution-id <uuid> --format <pdf|html> --report-file <path> [--project-key <key>] [--query <expr>]
uip tm perf-scenario report compare --scenario-id <uuid> --execution-ids <uuid...> --report-file <path> [--project-key <key>] [--query <expr>]
uip tm perf-scenario report generate --execution-id <uuid> --format <pdf|html> --report-file <path> [--project-key <key>] [--query <expr>]
uip tm perf-scenario report compare --scenario-id <uuid> --execution-ids <uuid...> --report-file <path> [--project-key <key>] [--query <expr>]
すべての動詞は、 グローバル オプション と標準の 終了コードを尊重します。すべての動詞は --log-level <level> を受け入れます (既定は Information)。
--project-key is optional on both verbs here — pass it only when you want the returned link to open the in-app report page instead of a bare view URL.
uip tm perf-scenario report generate
Render an authored report file and return its in-app view URL.
オプション
| フラグ | 説明 |
|---|---|
--execution-id <uuid> | Required. Scenario execution id. |
--format <format> | 必須。 pdf or html. pdf expects --report-file to contain markdown; html expects it to contain HTML. |
--report-file <path> | Required. Path to the authored report content (markdown for pdf, HTML for html). |
--project-key <key> | Test Manager project key. Optional — when provided, the returned link opens the in-app report page instead of a bare view URL. |
--query <expr> | jq-style filter applied to the output data. |
例
uip tm perf-scenario report generate \
--execution-id a1b2c3d4-0000-0000-0000-000000000001 \
--format pdf \
--report-file ./report.md \
--project-key DEMO
uip tm perf-scenario report generate \
--execution-id a1b2c3d4-0000-0000-0000-000000000001 \
--format pdf \
--report-file ./report.md \
--project-key DEMO
uip tm perf-scenario report generate \
--execution-id a1b2c3d4-0000-0000-0000-000000000001 \
--format html \
--report-file ./report.html \
--project-key DEMO
uip tm perf-scenario report generate \
--execution-id a1b2c3d4-0000-0000-0000-000000000001 \
--format html \
--report-file ./report.html \
--project-key DEMO
データシェイプ
{
"Code": "PerfReportGenerate",
"Data": {
"ViewUrl": "https://.../DEMO/testexecutions/performance-scenario/a1b2c3d4-0000-0000-0000-000000000001/report?format=pdf"
}
}
{
"Code": "PerfReportGenerate",
"Data": {
"ViewUrl": "https://.../DEMO/testexecutions/performance-scenario/a1b2c3d4-0000-0000-0000-000000000001/report?format=pdf"
}
}
uip tm perf-scenario report compare
Render an authored HTML comparison across several executions of the same scenario and return its in-app view URL.
オプション
| フラグ | 説明 |
|---|---|
--scenario-id <uuid> | Required. Scenario UUID being compared (not the SP1:7 key). |
--execution-ids <uuid...> | Required. The compared scenario execution ids, oldest to newest, space-separated. |
--report-file <path> | Required. File with the authored comparison HTML. |
--project-key <key> | Test Manager project key. Optional — when provided, the returned link opens the in-app report page. |
--query <expr> | jq-style filter applied to the output data. |
例
uip tm perf-scenario report compare \
--scenario-id 756e8ebf-c227-0000-8a9f-0b49fd934bef \
--execution-ids a1b2c3d4-0000-0000-0000-000000000001 a1b2c3d4-0000-0000-0000-000000000002 \
--report-file ./compare.html \
--project-key DEMO
uip tm perf-scenario report compare \
--scenario-id 756e8ebf-c227-0000-8a9f-0b49fd934bef \
--execution-ids a1b2c3d4-0000-0000-0000-000000000001 a1b2c3d4-0000-0000-0000-000000000002 \
--report-file ./compare.html \
--project-key DEMO
データシェイプ
{
"Code": "PerfReportCompare",
"Data": {
"ViewUrl": "https://.../DEMO/testexecutions/performance-scenario/compare?ids=..."
}
}
{
"Code": "PerfReportCompare",
"Data": {
"ViewUrl": "https://.../DEMO/testexecutions/performance-scenario/compare?ids=..."
}
}
関連
- uip tm perf-scenario — scenario lifecycle and shared concepts.
- Execution data — source of the
--execution-idvalues used above.