client.cli.workflow.tasks ========================= .. py:module:: client.cli.workflow.tasks .. autoapi-nested-parse:: Workflow tasks command. Functions --------- .. autoapisummary:: client.cli.workflow.tasks.tasks Module Contents --------------- .. py:function:: 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