{% extends "layout.html" %} {% block title %}Batch {{ batch_id }} Job {{ job_id }}{% endblock %} {% block content %}
Attempt ID | Instance | Start | End | Duration | Reason |
---|---|---|---|---|---|
{{ attempt['attempt_id'] }} | {{ attempt['instance_name'] }} | {% if 'start_time' in attempt and attempt['start_time'] is not none %} {{ attempt['start_time'] }} {% endif %} | {% if 'end_time' in attempt and attempt['end_time'] is not none %} {{ attempt['end_time'] }} {% endif %} | {% if 'duration' in attempt and attempt['duration'] is not none %} {{ attempt['duration'] }} {% endif %} | {% if 'reason' in attempt and attempt['reason'] is not none %} {{ attempt['reason'] }} {% endif %} |
No attempts
{% endif %}Job Step | Image Pulling Time (s) | Running Time (s) | Error Type | State | |
---|---|---|---|---|---|
{{ name }} | {% if step['timing']['pulling'] and step['timing']['pulling']['duration'] %} {{ step['timing']['pulling']['duration'] / 1000.0 }} {% endif %} | {% if step['timing']['running'] and step['timing']['running']['duration'] %} {{ step['timing']['running']['duration'] / 1000.0 }} {% endif %} | {% if step['short_error'] is not none %}{{ step['short_error'] }} | {% else %}{% endif %} | {{ step['state'] }} |
{{ error }}{% endif %} {% if job_log or step_errors %}
{{ job_log['input'] }}{% endif %} {% if 'input' in step_errors and step_errors['input'] is not none %}
{{ step_errors['input'] }}{% endif %} {% endif %} {% if 'main' in job_log or 'main' in step_errors %}
{{ job_log['main'] }}{% endif %} {% if 'main' in step_errors and step_errors['main'] is not none %}
{{ step_errors['main'] }}{% endif %} {% endif %} {% if 'output' in job_log or 'output' in step_errors %}
{{ job_log['output'] }}{% endif %} {% if 'output' in step_errors and step_errors['output'] is not none %}
{{ step_errors['output'] }}{% endif %} {% endif %} {% endif %}
Name | Value |
---|---|
image | {{ job_specification['image'] }} |
user code |
{{ job_specification['user_code'] }} |
command |
{{ "'" + (job_specification['command'] | join("' '")) + "'" }} |
{{ resource }} | {{ value }} |
Name | Value |
---|---|
{{ envvar['name'] }} | {{ envvar['value'] }} |
{{ job_status_str }}{% endblock %}