- Überblick
- Erste Schritte
- Konzepte
- Verwenden der UiPath CLI
- Anleitungen
- CI/CD-Rezepte
- Befehlsreferenz
- Überblick
- Exitcodes
- Globale Optionen
- UIP-codierter Agent
- uip coder
- uip context-grounding
- UIP-Dokumentation
- uip function
- uip guardrails
- uip llm-configuration
- uip llm-gateway
- uip model-hub
- Add-Test-Data-Entität
- Add-Test-Data-Queue
- Add-Test-Data-Variation
- Analysieren
- Erstellen
- Ein Projekt erstellen
- Diff
- Suchaktivitäten
- Get-Analyse-Regeln
- get-standard-aktivität-xaml
- Fehler abrufen
- Manuelle-Testfälle erhalten
- Manuelle-Testschritte erhalten
- get-library-object-repository
- get-object-repository
- Get-Versionen
- Beispiel für einen Workflow abrufen
- Anwendung anzeigen
- Anzeigeelement
- Inspektionspaket
- install-data-fabric-entities
- Pakete installieren oder aktualisieren
- list-data-fabric-entities
- list-instances
- Beispiele für Listenworkflows
- Packen
- Veröffentlichen
- remote
- restore
- run, debug & execution
- Ausführungsdatei installieren
- Suchvorlagen
- Studio starten
- Ausführung anhalten
- tm
- UIA
- uip tasks
- UIP-Ablaufverfolgungen
- uip traces feedback
- Migration
- Referenz und Support
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.
Alle Unterbefehle erfordern uip login und berücksichtigen globale Optionen. Austrittscodes folgen dem Standardvertrag.
Zusammenfassung
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>
Verwenden Sie für Vorfälle, die auf einen bestimmten Prozess oder eine bestimmte Instanz beschränkt sind, Folgendes:
uip maestro bpmn processes incidents <process-key>– alle Vorfälle für einen Prozess.uip maestro bpmn instance incidents <instance-id>– alle Vorfälle für eine Instanz.
uip maestro bpmn incident summary
Get a rollup of incidents across Maestro processes.
Argumente
Keine.
Optionen
| Option | Beschreibung |
|---|---|
--folder-key <key> | Folder key. Optional — omit for a tenant-wide rollup. |
-l, --limit <number> | Anzahl der zurückzugebenden Elemente (1–10.000). |
--offset <number> | Number of items to skip (0-1000000). Default 0. |
--process-key <process-key> | Nach Prozessschlüssel filtern. |
--status <status> | Filter by incident status. |
--severity <severity> | Filter by incident severity. |
Datenform (--output json)
{
"Code": "IncidentSummary",
"Data": [ /* array of incident summaries */ ]
}
{
"Code": "IncidentSummary",
"Data": [ /* array of incident summaries */ ]
}
uip maestro bpmn incident get
Rufen Sie einen einzelnen Vorfall nach ID ab.
Argumente
<incident-id>(erforderlich) – Vorfall-ID. Automatisch URL-codiert.
Optionen
| Option | Beschreibung |
|---|---|
-f, --folder-key <key> | Folder key. Required. |
Datenform
{
"Code": "IncidentGet",
"Data": { /* incident details */ }
}
{
"Code": "IncidentGet",
"Data": { /* incident details */ }
}
Beispiele
# 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>
Siehe auch
uip maestro bpmn instance incidents– Vorfälle für eine Instanzuip maestro bpmn processes incidents– Vorfälle für eine Prozessdefinitionuip maestro bpmn instance retry– Beheben Sie eine fehlerhafte Instanz- Maestro-Übersicht