{% extends "base.html" %} {% block content %}
| 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 %}
|
| 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 }} |
Empty payload.
{% endif %}| 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 }}
|
No conditions were registered for this event code.
{% endif %}| 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 %}
{% endif %}
|
{{ run.task_id_key }}
|
{{ run.logic_value }} |
{% if run.triggered_invocation_id %}
{{ run.triggered_invocation_id }}
{% else %}
—
{% endif %}
|
{% if run.executed_at %}
{{ run.executed_at.isoformat(timespec="seconds")
}}
{% else %}
—
{% endif %}
|
No trigger runs reference this event yet.
{% endif %}