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 %}

EONodes

{% for task in task_descriptions %}

{{ task['name'] }}

Execution duration: {{ task['duration_report'] }}

Initialization parameters

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

No initialization parameters

{% 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 %}