EOExecution Report

EOWorkflow dependency graph

Execution status

{% for execution in execution_results %} {% endfor %}

 ... Execution successfully finished
 ... Execution failed because of an error
{% if exception_stats %}

Summary of exceptions

{% endif %}

EOTasks

Initialization parameters

{% for task in task_descriptions %}

{{ task['name'] }}

{% if task['args'] %} {% else %}

No initialization parameters

{% endif %} {% endfor %}

Task sources

{% for task_title, task_source in task_sources.items() %}

{{ task_title }}

{% if task_source is none %}

Cannot collect source code of a task which is not defined in a .py file

{% elif task_source is string %} {{ task_source }} {% else %}

Imported from {{ task_source[0] }} version {{ task_source[1] }}

{% endif %}
{% endfor %}

Execution details

{% for execution in execution_results %}

Execution {{ execution_names[loop.index - 1] }}

Statistics
{% if execution.workflow_failed() %} {% set error_node = execution.stats[execution.error_node_uid] %} Error in task {{ error_node.node_name }} ({{ error_node.node_uid }}):
{{ execution_tracebacks[loop.index - 1] }} {% endif %} {% if execution_logs %}
{{ execution_logs[loop.index - 1] }}
{% else %} {% set logs_filename = execution_log_filenames[loop.index - 1] %} Logs: {{ logs_filename }} {% endif %}
{% endfor %}