{% extends "base.html" %} {% block content %}
Event Details
Back to Events Show in Timeline {% if event.emitted_by_invocation_id %} View Emitter {% endif %}
Identity
Event ID: {{ event.event_id }}
Event code: {{ event.event_code }}
Timestamp (UTC): {{ event.timestamp.isoformat(timespec="seconds") }}
Emitted by: {% if event.emitted_by_invocation_id %} {{ event.emitted_by_invocation_id }} {% else %} external (no invocation context) {% endif %}
Emitter task: {% if event.emitted_by_task_id %} {{ event.emitted_by_task_id }} {% else %} {% endif %}
Outcome
Conditions evaluated: {{ event.valid_condition_ids|length }}
Conditions matched: {% if event.matched %} {{ event.matched_condition_ids|length }} {% else %} 0 {% endif %}
Triggered invocations: {% if event.triggered %} {{ event.triggered_invocation_ids|length }} {% else %} 0 {% endif %}
Trigger runs: {{ trigger_runs|length }}
Payload
{% if event.payload %} {% with args=event.payload, id_prefix='evt-payload' %} {% include "partials/formatted_arguments.html" %} {% endwith %} {% else %}

Empty payload.

{% endif %}
Conditions evaluated for this event {{ conditions|length }}
{% if conditions %} {% for cond in conditions %} {% endfor %}
Kind Matched Summary Condition ID
{{ cond.kind }} {% if cond.matched %} matched {% else %} no match {% endif %} {% if cond.summary %} {% for k, v in cond.summary %} {{ k }}={{ v }}{% if not loop.last %} · {% endif %} {% endfor %} {% else %} {% endif %} {{ cond.condition_id }}
{% else %}

No conditions were registered for this event code.

{% endif %}
Triggered invocations {{ trigger_runs|length }}
{% if trigger_runs %} {% for run in trigger_runs %} {% endfor %}
Run ID Task Logic Invocation Executed at (UTC)
{{ run.trigger_run_id }} {% set run_timeline_url = trigger_run_timeline_urls.get(run.trigger_run_id) %} {% if run_timeline_url %} timeline {% endif %} {{ run.task_id_key }} {{ run.logic_value }} {% if run.triggered_invocation_id %} {{ run.triggered_invocation_id }} timeline {% else %} {% endif %} {% if run.executed_at %} {{ run.executed_at.isoformat(timespec="seconds") }} {% else %} {% endif %}
{% else %}

No trigger runs reference this event yet.

{% endif %}
{% endblock %}