Watch tool execution

In my local Galaxy Server, I have a compute-intensive tool that reads a large paired collection. When this tool runs, it expends a lot of time.

Is there any way to monitorize the execution so as to predict the total execution time?

As Galaxy fires one tool instance for each collection pair, is there a way to know how many and what pairs are already processed?

Thanks a lot.

1 Like

i have a workaround for this
in order to monitor the sdout of the tool ~$sudo tail -f /proc//fd/1 for the stderr ~$sudo tail -f /proc//fd/2

1 Like