--- title: Check Workflow Status --- ## Check workflow status using Chaos Dashboard 1. List all workflows in Chaos Dashboard. ![List Workflow On Dashboard](./img/list-workflow-on-dashboard.png) 2. Select the workflow you want to check and see the details of the workflow. ![Workflow Status On Dashboard](./img/workflow-status-on-dashboard.png) ## Check workflow status using `kubectl` commands 1. Execute the following command to list the current created workflows in the specified namespace: ```shell kubectl -n get workflow ``` 2. Choose a workflow you want to check and specify the workflow name in the following command. Execute the command to get all workflow nodes of the workflow: ```shell kubectl -n get workflownode --selector="chaos-mesh.org/workflow=" ``` The steps of the workflow are represented by the names of these workflow nodes. 3. Execute the following command to the get detailed status of the specified workflow node: ```shell kubectl -n describe workflownode ``` The output includes whether the execution of the current node is completed, the execution status of its parallel or serial node, the corresponding Chaos experiment object of the current node, and so on.