c8volt ops purge process-instances-with-incidents

Purge process instances selected by incidents

Synopsis

Purge process instances selected by incidents.

The workflow discovers candidate incidents from incident filters, freezes the candidate process-instance keys, validates the delete plan, and then either reports the plan with –dry-run or submits deletion only after confirmation. Discovery pages through all matching incidents by default. –batch-size tunes per-page discovery requests only, and –limit intentionally caps the frozen scope. Human, JSON, and audit report output identify whether discovery completed or was user-limited. Use –auto-confirm or –automation for unattended deletion, combine –automation with –json for deterministic machine output, and use –report-file to write an audit report.

c8volt ops purge process-instances-with-incidents [flags]

Examples

  ./c8volt ops purge process-instances-with-incidents --dry-run
  ./c8volt ops purge process-instances-with-incidents --state active --error-type io_mapping_error --dry-run
  ./c8volt ops purge process-instances-with-incidents --state active --error-type io_mapping_error --limit 5 --force
  ./c8volt ops purge process-instances-with-incidents --state active --error-type io_mapping_error --limit 5 --force --report-file incident-purge.md

Options

  -n, --batch-size int32               number of incidents to inspect per discovery page; does not cap total frozen scope (max limit 1000 enforced by server) (default 1000)
  -b, --bpmn-process-id string         BPMN process ID to filter incidents
      --creation-time-after string     only include incidents with creation time >= RFC3339 timestamp, c8volt timestamp, or YYYY-MM-DD
      --creation-time-before string    only include incidents with creation time <= RFC3339 timestamp, c8volt timestamp, or YYYY-MM-DD
      --creation-time-newer-days int   only include incidents with creation time N days old or newer (0 means today) (default -1)
      --creation-time-older-days int   only include incidents with creation time N days old or older (default -1)
      --dry-run                        discover and validate incident-based process-instance cleanup without submitting deletion requests
      --element-id string              BPMN element ID to filter incidents
      --element-instance-key string    element instance key to filter incidents
      --error-message string           case-insensitive incident error message substring filter for discovery
      --error-type string              case-insensitive incident error type filter for discovery
      --fail-fast                      stop scheduling validation or deletion work after the first error
      --force                          force cancellation of the process instance(s), prior to deletion
  -h, --help                           help for process-instances-with-incidents
  -k, --key strings                    incident key(s) to select for candidate discovery
  -l, --limit int32                    maximum number of matching incidents to freeze before candidate process-instance dedupe; omit to discover all matches
      --no-wait                        return after deletion requests are accepted without deletion confirmation
      --no-worker-limit                use all queued jobs as workers when --workers is unset
      --pd-key string                  process definition key to filter incidents
      --pi-key string                  process instance key to filter incidents
      --report-file string             write an audit report to the given path
      --report-format string           audit report format: markdown, json (default inferred from report-file extension)
      --root-key string                root process instance key to filter incidents
  -s, --state string                   incident state scope for discovery: active, pending, resolved, migrated, unknown, all (default "active")
  -w, --workers int                    maximum concurrent workers when validating the delete plan and deleting roots (default: min(targets, 2*GOMAXPROCS, 32))

Options inherited from parent commands

  -y, --auto-confirm       auto-confirm prompts for non-interactive use
      --automation         enable non-interactive mode for commands that explicitly support it
      --config string      path to config file
      --debug              enable debug logging
  -j, --json               output as JSON (where applicable)
      --keys-only          output keys only (where applicable)
      --log-level string   log level (debug, info, warn, error) (default "info")
      --no-indicator       disable transient terminal activity indicators
      --profile string     config active profile name to use (e.g. dev, prod)
  -q, --quiet              suppress output except errors
      --tenant string      tenant ID for discovery/search, selection, create, deploy, and run flows; explicit keys/IDs remain backend-authorized
      --timeout duration   HTTP request timeout (default 30s)
  -v, --verbose            show additional output

SEE ALSO