Dexy Run Report

Results of your Run


This is a logfile to help you understand how dexy has processed your files and to assist with troubleshooting.



Timing

The total elapsed time for batch {{ batch.batch_id }} was {{ "%0.2f" % batch.elapsed() }} ({{ "%0.2f" % (float(batch.elapsed())/60)}} minutes).

10 Slowest Tasks


    {% for task in batch.tasks_by_elapsed() -%} {% if task and task.elapsed -%}
  • {{ "%0.3f" % task.elapsed }} - {{ task.key }} ({{ task.content_source }})
  • {% endif -%} {% endfor -%}

Documents

{% for doc in docs -%}

{{ doc.key }}    


Arguments


{% for k, v in doc.args.iteritems() -%}
{% if not k in ('wrapper', 'contents') -%}
{% if isinstance(v, dict) -%}
{{ k }}:
{% for kk, vv in v.iteritems() -%}
    {{ kk }}: {{ vv }}
{% endfor -%}
{% else -%}
{{ k }}: {{ v }}
{% endif -%}
{% endif -%}
{% endfor -%}
{% if len(doc.inputs) > 0 %}

Inputs

{% endif %}

Artifacts

{% for a in doc.artifacts -%} {% endfor -%}
KeyLinkElapsedRun TypeSectionswd
{{ a.key }} {{ a.output_data.storage.data_file() }} {{ "%0.4f" % a.elapsed }} {{ a.content_source }} {% if hasattr(a.output_data, 'keys') -%} {% for k in a.output_data.keys() -%} {{ k }}
{% endfor -%} {% endif -%}
{% if a.working_dir_exists() -%} wd {% endif -%}

{% for a in doc.artifacts -%} {% if a.stdout -%}

{{ a.key }} stdout

{{ a.stdout }} {% endif -%} {% endfor -%}

Document Log

{{ doc.logstream.getvalue() }}

{% endfor %}