UiPath Documentation
uipath-cli
latest
false
Guía del usuario de UiPath CLI
Importante :
Este contenido se ha traducido mediante traducción automática. La localización de contenidos recién publicados puede tardar entre una y dos semanas en estar disponible.

uip maestro bpmn incidents

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.

Todos los subcomandos requieren uip login y respetan las opciones globales. Los códigos de salida siguen el contrato estándar.

Sinopsis

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>

Para incidentes cuyo ámbito sea un proceso o instancia específicos, utiliza:

uip maestro bpmn incident summary

Get a rollup of incidents across Maestro processes.

Argumentos

Nada.

Opciones

OpciónDescripción
--folder-key <key>Folder key. Optional — omit for a tenant-wide rollup.
-l, --limit <number>Número de elementos a devolver (1-10000).
--offset <number>Number of items to skip (0-1000000). Default 0.
--process-key <process-key>Filtrar por clave de proceso.
--status <status>Filter by incident status.
--severity <severity>Filter by incident severity.

Forma de datos (--output json)

{
  "Code": "IncidentSummary",
  "Data": [ /* array of incident summaries */ ]
}
{
  "Code": "IncidentSummary",
  "Data": [ /* array of incident summaries */ ]
}

uip maestro bpmn incident get

Obtener un solo incidente por ID.

Argumentos

  • <incident-id> (obligatorio) : ID de incidente. Codificado como URL automáticamente.

Opciones

OpciónDescripción
-f, --folder-key <key>Folder key. Required.

Forma de datos

{
  "Code": "IncidentGet",
  "Data": { /* incident details */ }
}
{
  "Code": "IncidentGet",
  "Data": { /* incident details */ }
}

Ejemplos

# 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>

Ver también

¿Te ha resultado útil esta página?

Conectar

¿Necesita ayuda? Soporte

¿Quiere aprender? UiPath Academy

¿Tiene alguna pregunta? Foro de UiPath

Manténgase actualizado