- Vue d'ensemble (Overview)
- Démarrer
- Concepts
- Utilisation de la UiPath CLI
- Guides pratiques
- Revenus CI/CD
- Référence de commande
- Vue d'ensemble (Overview)
- Codes de sortie
- Options globales
- agent codé uip
- uip coder
- uip context-grounding
- UiPath Docsai
- uip function
- uip guardrails
- uip llm-configuration
- uip llm-gateway
- uip model-hub
- Tâches (Jobs)
- Dossiers
- Processus
- Paquets
- Machines
- Utilisateurs
- Rôles
- Licences
- Flux
- Pièces jointes (Attachments)
- Sessions
- Calendriers
- magasins d'informations d’identification
- journaux-audit
- paramètres
- Actifs
- Compartiments
- Compartiment-fichiers
- Bibliothèques
- Files d'attente (Queues)
- éléments de la file d'attente
- Déclencheurs (Triggers)
- Webhooks
- add-test-data-entity
- ajouter une file d'attente de données de test
- add-test-data-variation
- Analyser
- Construire
- créer-projet
- Différence
- recherche-activités
- Obtenir les règles de l'analyse
- récupérer-activité-xaml par défaut
- Récupérer les erreurs
- obtenir des cas de test manuels
- Obtenir les étapes de test manuelles
- get-library-object-repository
- get-object-repository
- Obtenir les versions
- exemple de workflow
- indiquer l'application
- indiquer l'élément
- inspecter-package
- install-data-fabric-entities
- installer-ou-Update-packages
- list-data-fabric-entités
- list-instances
- listes-exemples-workflow
- Créer un package
- Publier
- remote
- restore
- run, debug & execution
- Exécuter le fichier
- modèles-recherche
- Démarrer-Studio
- arrêter l'exécution
- tm
- UIA
- uip tasks
- Traçages UIP
- uip traces feedback
- Migration
- Référence et assistance
Syntax and options for the `uip tm perf-scenario` verbs that inspect a scenario execution — executions list, results get, http-errors, automation-errors, and transaction-metrics.
These uip tm perf-scenario verbs inspect data produced by a scenario execution: the execution list itself, the full results bundle, HTTP errors, automation-step failures, and per-transaction metrics.
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.
Synthèse
uip tm perf-scenario executions list --project-key <key> [--scenario-id <uuid>] [--execution-type <type>] [--limit <n>] [--offset <n>] [--query <expr>]
uip tm perf-scenario results get --execution-id <uuid> [--completed <true|false>] [--query <expr>]
uip tm perf-scenario http-errors list --execution-id <uuid> --load-group-id <uuid> --start-time-ms <n> --end-time-ms <n> [--query <expr>]
uip tm perf-scenario automation-errors list --execution-id <uuid> --load-group-id <uuid> --start-time-ms <n> --end-time-ms <n> [--query <expr>]
uip tm perf-scenario transaction-metrics list --load-group-id <uuid> --start-time-ms <n> --end-time-ms <n> [--query <expr>]
uip tm perf-scenario executions list --project-key <key> [--scenario-id <uuid>] [--execution-type <type>] [--limit <n>] [--offset <n>] [--query <expr>]
uip tm perf-scenario results get --execution-id <uuid> [--completed <true|false>] [--query <expr>]
uip tm perf-scenario http-errors list --execution-id <uuid> --load-group-id <uuid> --start-time-ms <n> --end-time-ms <n> [--query <expr>]
uip tm perf-scenario automation-errors list --execution-id <uuid> --load-group-id <uuid> --start-time-ms <n> --end-time-ms <n> [--query <expr>]
uip tm perf-scenario transaction-metrics list --load-group-id <uuid> --start-time-ms <n> --end-time-ms <n> [--query <expr>]
Tous les verbes respectent les options globales et les codes de sortie standard. Chaque verbe accepte --log-level <level> (par défaut Information).
None of these verbs take --project-key — they call the Performance Service directly rather than resolving a Test Manager project. --load-group-id here is the per-execution load group id from load-groups list, not the scenario's LoadGroupId from perf-scenario get.
uip tm perf-scenario executions list
List scenario executions, optionally filtered to one scenario and/or one execution type (dry run vs. full).
Options
| Drapeau | Description |
|---|---|
--project-key <key> | Requis. Propriétaire du projet. |
--scenario-id <uuid> | Filter to one scenario (UUID, not the SP1:7 key). |
--execution-type <type> | Filter by execution type: dryRun or performanceTesting. |
--limit <n> | Max results to return. Defaults to the service's own page size when omitted. |
--offset <n> | Results to skip, for paging. Defaults to 0. |
--query <expr> | jq-style filter applied to the output data. |
Exemple
uip tm perf-scenario executions list \
--project-key DEMO \
--scenario-id 756e8ebf-c227-0000-8a9f-0b49fd934bef \
--execution-type performanceTesting
uip tm perf-scenario executions list \
--project-key DEMO \
--scenario-id 756e8ebf-c227-0000-8a9f-0b49fd934bef \
--execution-type performanceTesting
Format des données
{
"Code": "PerfExecutionsList",
"Data": {
"Data": [
{
"Id": "80694766-5a44-0000-0985-0b49fd93832d",
"ExecutionType": "performanceTesting",
"Status": "Finished"
}
]
}
}
{
"Code": "PerfExecutionsList",
"Data": {
"Data": [
{
"Id": "80694766-5a44-0000-0985-0b49fd93832d",
"ExecutionType": "performanceTesting",
"Status": "Finished"
}
]
}
}
uip tm perf-scenario results get
Get the full execution data bundle for a run: per-load-group time series, CPU/RAM, and application logs. This is the same underlying payload perf-scenario execute --wait prints once the run finishes.
Options
| Drapeau | Description |
|---|---|
--execution-id <uuid> | Required. Scenario execution id. |
--completed <bool> | true reads the finished run from the database; false reads a live, still-running execution from Redis. Defaults to true. |
--query <expr> | jq-style filter applied to the output data. |
Exemple
uip tm perf-scenario results get --execution-id 80694766-5a44-0000-0985-0b49fd93832d
uip tm perf-scenario results get --execution-id 80694766-5a44-0000-0985-0b49fd93832d
Format des données
{
"Code": "PerfExecutionResults",
"Data": {
"ExecutionsData": {},
"ApplicationLogs": []
}
}
{
"Code": "PerfExecutionResults",
"Data": {
"ExecutionsData": {},
"ApplicationLogs": []
}
}
This is the raw pass-through shape from the Performance Service. execute --wait post-processes the same underlying data into the friendlier LoadGroups/ApplicationLogs shape documented on the perf-scenario execute page — call results get --completed false directly only when you need the live/in-progress view mid-run.
uip tm perf-scenario http-errors list
List HTTP errors recorded for one load group's execution, grouped by request, over a time window.
Options
| Drapeau | Description |
|---|---|
--execution-id <uuid> | Required. Scenario execution id. |
--load-group-id <uuid> | Required. Load group execution id (from load-groups list, not the scenario's LoadGroupId). |
--start-time-ms <n> | Required. Window start, in ms from run start. Use 0 for the whole run. |
--end-time-ms <n> | Required. Window end, in ms from run start. Use the run duration for the whole run. |
--query <expr> | jq-style filter applied to the output data. |
Exemple
uip tm perf-scenario http-errors list \
--execution-id 80694766-5a44-0000-0985-0b49fd93832d \
--load-group-id 082486b0-8d51-0000-b54a-0b4a1388f850 \
--start-time-ms 0 \
--end-time-ms 240000
uip tm perf-scenario http-errors list \
--execution-id 80694766-5a44-0000-0985-0b49fd93832d \
--load-group-id 082486b0-8d51-0000-b54a-0b4a1388f850 \
--start-time-ms 0 \
--end-time-ms 240000
Format des données
{
"Code": "PerfHttpErrorsList",
"Data": { "Errors": [] }
}
{
"Code": "PerfHttpErrorsList",
"Data": { "Errors": [] }
}
uip tm perf-scenario automation-errors list
List automation-step failures for one load group's execution, over a time window.
Options
| Drapeau | Description |
|---|---|
--execution-id <uuid> | Required. Scenario execution id. |
--load-group-id <uuid> | Required. Load group execution id (from load-groups list). |
--start-time-ms <n> | Required. Window start, in ms from run start. Use 0 for the whole run. |
--end-time-ms <n> | Required. Window end, in ms from run start. |
--query <expr> | jq-style filter applied to the output data. |
Exemple
uip tm perf-scenario automation-errors list \
--execution-id 80694766-5a44-0000-0985-0b49fd93832d \
--load-group-id 082486b0-8d51-0000-b54a-0b4a1388f850 \
--start-time-ms 0 \
--end-time-ms 240000
uip tm perf-scenario automation-errors list \
--execution-id 80694766-5a44-0000-0985-0b49fd93832d \
--load-group-id 082486b0-8d51-0000-b54a-0b4a1388f850 \
--start-time-ms 0 \
--end-time-ms 240000
Format des données
{
"Code": "PerfAutomationErrorsList",
"Data": { "Errors": [] }
}
{
"Code": "PerfAutomationErrorsList",
"Data": { "Errors": [] }
}
uip tm perf-scenario transaction-metrics list
List per-transaction response-time and throughput metrics (average, P50, P95, P99) for a load group, over a time window. API SUTs only — this data isn't collected for browser-driven (web) scenarios.
Options
| Drapeau | Description |
|---|---|
--load-group-id <uuid> | Required. Load group execution id (from load-groups list). |
--start-time-ms <n> | Required. Window start, in ms from run start. Use 0 for the whole run. |
--end-time-ms <n> | Required. Window end, in ms from run start. |
--query <expr> | jq-style filter applied to the output data. |
Exemple
uip tm perf-scenario transaction-metrics list \
--load-group-id 082486b0-8d51-0000-b54a-0b4a1388f850 \
--start-time-ms 0 \
--end-time-ms 240000
uip tm perf-scenario transaction-metrics list \
--load-group-id 082486b0-8d51-0000-b54a-0b4a1388f850 \
--start-time-ms 0 \
--end-time-ms 240000
Format des données
{
"Code": "PerfTransactionMetricsList",
"Data": { "Metrics": [] }
}
{
"Code": "PerfTransactionMetricsList",
"Data": { "Metrics": [] }
}
Note this verb takes no --execution-id — only --load-group-id, unlike http-errors list and automation-errors list.
Associé
- uip tm perf-scenario — scenario lifecycle and shared concepts.
- Load groups — source of the
--load-group-idused on this page. - Reports — render authored reports for an execution or a comparison.
Voir également
- Synthèse
- uip tm perf-scenario executions list
- Options
- Exemple
- Format des données
- uip tm perf-scenario results get
- Options
- Exemple
- Format des données
- uip tm perf-scenario http-errors list
- Options
- Exemple
- Format des données
- uip tm perf-scenario automation-errors list
- Options
- Exemple
- Format des données
- uip tm perf-scenario transaction-metrics list
- Options
- Exemple
- Format des données
- Associé
- Voir également