| -h | Show this help message and exit. |
| -f <format> | |
| Output format to emit. | |
| -t <seconds> | |
| Timeout for reading the logs. | |
| -m <minimum> | |
| Mininum number of tasks. | |
| -S | Sort logs by progress. |
| -P | Parse dag for node information. |
| -H | Hide finished makeflows. |
Currently, the only supported <format> is "text", which means makeflow_monitor will display the progress of the workflows directly to the console.
Additionally, the -P parameter current does not do anything.
makeflow_monitor Makeflow.makeflowlogMonitor multiple Makeflow logs and hide finished workflows:
makeflow_monitor -H */*.makeflowlogMonitor multiple Makeflow logs under current directory and only display currently running workflows with a minimum of 4 tasks:
find . -name '*.makeflowlog' | xargs makeflow_monitor -m 4 -HThe example above is useful for hierarchical workflows.