client.cli.workflow.tasks
Workflow tasks command.
Functions
|
View tasks in a workflow. |
Module Contents
- client.cli.workflow.tasks.tasks(workflow_id: int, status: Tuple[str, Ellipsis], limit: int, output: str) None
View tasks in a workflow.
b .. rubric:: Examples
# Show tasks in workflow jobmon workflow tasks -w 12345
# Show only failed tasks jobmon workflow tasks -w 12345 -s FATAL
# Show pending and running tasks jobmon workflow tasks -w 12345 -s PENDING -s RUNNING -l 50