First time here? Check out the FAQ!
![]() | 1 | initial version |
To view your workflows you can use the command:
openstack workflow execution list
If you then want to look at the individual executions, you can do this:
openstack action execution list
If you output is large on there you can grep for "ERROR" to find those that are failing.
openstack action execution list | grep ERROR
Then you should be able to see from the task name where it failed in the workflow. You can easily then get more information for each task.
openstack action execution show $ID
mistral action-execution-get-input $ID
mistral action-execution-get-output $ID
(Note the bottom two commands should be possible via openstack client, but they seem to be broken. I will file a bug.)