{% extends "layouts/content-bootstrap.html" %} {% block content %} {% if job.status != job.COMPLETE %} {% endif %}

Durations overall

{% for action in summary %}
{% if action.2 >= 10 %}{{ action.0 }} - {{ action.2|floatformat:"0" }}%{% endif %}
{% endfor %}
{% for action in summary %}
{{ action.0 }}
{{ action.2|floatformat:"2" }}% ({{ action.1 }})
{% endfor %}
Total
{{ total_duration }}
Max
{{ max_duration }}
Mean
{{ mean_duration|floatformat:"2" }}

Complete timing

{% for action in pipeline %} {% if action.2 >= max_duration %} {% elif action.2 >= mean_duration %} {% else %} {% endif %} {% if action.4 %} {% else %} {% endif %} {% endfor %}
Level Action Duration (seconds) Timeout (seconds)
{{ action.0 }} {{ action.1 }} {{ action.2 }}{{ action.2 }} / {{ action.3|floatformat:"0" }}{{ action.3|floatformat:"0" }}
{% endblock %}