{% if task %}
Task information
Task ID: {{ task.task_id }}
Module: {{ task_extra.module }}
Function: {{ task_extra.func_qualname }}
Configuration
Registration Concurrency: {{ task.conf.registration_concurrency.name }}
Running Concurrency: {{ task.conf.running_concurrency.name }}
Max Retries: {{ task.conf.max_retries }}
Call Result Cache: {{ task.conf.call_result_cache }}
Workflow Runs
{{ workflow_runs|length }} Total Runs View Task Details
{% else %}
Workflow Runs
{{ workflow_runs|length }} Total Runs
{% endif %} {% if workflow_runs %}
Run occupancy
Compare task states over each selected workflow lifetime.
{% if histogram_selection_capped %}
Only the first 10 selected runs are rendered.
{% endif %} {% for workflow_histogram in workflow_histograms %}
Run {{ workflow_histogram.short_id }}
{% set histogram = workflow_histogram.histogram %} {% include "partials/histogram.html" %}
{% endfor %}
{% for run in workflow_runs %} {% endfor %}
Invocation ID Parent Workflow Actions
{{ run.workflow_id }} {% if run.parent_workflow_id %}
{% if run.parent_workflow %} {{ run.parent_workflow.workflow_type }} {% else %} Parent workflow {% endif %} {{ run.parent_workflow_id }}
{% else %} - {% endif %}
View All Invocations {% if run.parent_workflow %} Parent Workflow Details {% endif %}
{% else %}
No workflow runs found

This workflow type has not been executed yet.

{% endif %}