Skip to content

vor show process

vor show process

Output a list of processes or a single process definition

Synopsis

Print the list of processes defined within a playpen. If a process name is provided, the definition of that process will be printed.

By default, the output is in table format. JSON formatting is also available with the --output flag. This flag has no effect when a single process definition is requested.

vor show process [<process-name>] [flags]

Examples

# Show a list of all defined processes in the current playpen
$ vor show process

# Output the process list as JSON
$ vor show process --output json

# Filter the process list on types
$ vor show process --type model,report

# Filter the process list on IDs 1 and 3
$ vor show process --id 1,3

# Filter the process list with partial process name
$ vor show process --name-like test

# Filter the process list on exact process name
$ vor show process --name my_first_process

# Sort the process list by process ID
$ vor show process --sort id

# Sort the filtered process list by type
$ vor show process --name-like test --sort type

# Show a specific process definition
$ vor show process my_first_process

Options

  -h, --help               help for process
      --id uints           Filter by process ID(s) (default [])
      --name string        Filter by process name (conflicts with --partial-name)
      --name-like string   Filter by partial process name (conflicts with --name)
      --output string      Output format ("json"|"table") (default "table")
      --runnable           Only show processes that are runnable
      --sort string        Sort output by ("id"|"name"|"runnable"|"type") (default "name")
      --type strings       Filter by process type(s) ("model"|"report"|"default")

Options inherited from parent commands

      --play string   playpen path
      --renew-token   renew token (default true)

SEE ALSO