{% extends "base.html" %} {% from "partials/status_badge.html" import status_badge %} {% block content %}
Invocation information
{% if completed_at %} {% endif %} {% if duration %} {% endif %}
Invocation ID: {{ invocation.invocation_id }}
Status: {{ status_badge(invocation.status.name) }}
Retries: {{ invocation.num_retries }}
Parent Invocation: {% if invocation.parent_invocation_id %} {{ invocation.parent_invocation_id }} {% else %} None {% endif %}
Created At: {{ created_at }}
Completed At: {{ completed_at }}
Duration: {{ duration }}
Call & task information
Call ID: {{ call.call_id }}
Task ID: {{ task.task_id }}
Task Module: {{ task.task_id.module }}
Task Function: {{ task.task_id.func_name }}
{% if workflow %}
Workflow information
{% if workflow.parent_workflow_id %} {% endif %}
Workflow Type: {{ workflow.workflow_type }}
Workflow ID: {{ workflow.workflow_id }}
Parent Workflow: {{ workflow.parent_workflow_id }}
Sub-workflow: {{ 'Yes' if workflow.is_subworkflow else 'No' }}
{% endif %}
Arguments
{% if arguments %} {% with args=arguments, id_prefix='invocation-args' %} {% include "partials/formatted_arguments.html" %} {% endwith%} {% else %}

No arguments provided

{% endif %}
Result / exception
{% if result is not none %}
Result:
{{ result }}
{% elif exception is not none %}
Exception:
{{ exception }}
{% else %}

No result or exception available.

{% endif %}
Status timeline
{% if history %}
{% for entry in history %}
{{ status_badge(entry.status) }}
{% if entry.runner_context_summary %}
Runner: {{ entry.runner_cls or 'Unknown' }} {{ entry.runner_id }}
{% if entry.hostname %}host: {{ entry.hostname }}{% endif %} {% if entry.pid %}pid: {{ entry.pid }}{% endif %} {% if entry.thread_id %}thread: {{ entry.thread_id }}{% endif %}
{% if entry.parent_runner_id %}
↳ Parent: {{ entry.parent_runner_cls or 'Unknown' }} {{ entry.parent_runner_id }}
{% if entry.parent_hostname %}host: {{ entry.parent_hostname }}{% endif %} {% if entry.parent_pid %}pid: {{ entry.parent_pid }}{% endif %} {% if entry.parent_thread_id %}thread: {{ entry.parent_thread_id }}{% endif %}
{% endif %}
{% endif %} {% if entry.execution_context %}
{{ entry.execution_context }}
{% endif %}
{% endfor %}
{% else %}

No history available.

{% endif %}
{% include "partials/ft_float_panel.html" %} {% endblock %} {% block extra_js %} {% endblock %}