{% extends "base.html" %} {% block content %}
Invocation ID: {{ invocation.invocation_id }}
Invocation Information
{% if completed_at %} {% endif %} {% if duration %} {% endif %}
Status: {{ invocation.status.name }}
Retries: {{ invocation.num_retries }}
Parent Invocation: {% if invocation.parent_invocation %} {{ invocation.parent_invocation.invocation_id[:8] }}... {% else %} None {% endif %}
Created At: {{ created_at }}
Completed At: {{ completed_at }}
Duration: {{ duration }}
Call & Task Information
Call ID: {{ call.call_id.split('#')[-1][:8] if '#' in call.call_id else call.call_id[:8] }}...
Task ID: {{ task.task_id }}
Task Module: {{ task_extra.module }}
Task Function: {{ task_extra.func_qualname }}
Arguments
{% with args=arguments, id_prefix='invocation-args' %} {% include "partials/formatted_arguments.html" %} {% endwith%}
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 %}
{{ entry.status }}

{{ entry.timestamp }}

{% if entry.execution_context %}

{{ entry.execution_context }}

{% endif %}
{% endfor %}
{% else %}

No history available.

{% endif %}
{% endblock %}