{% extends "base.html" %} {% block content %}
| Timestamp (UTC) | Event code | Event ID | Conditions | Triggered invocations | Emitter invocation | |
|---|---|---|---|---|---|---|
{{ event.timestamp.isoformat(timespec="seconds") }}
|
{{ event.event_code }} |
{{ event.event_id }}
|
{% if event.matched %}
{{ event.matched_condition_ids|length }} matched
{% for cid in event.matched_condition_ids[:3] %}
{% else %}
0
{% endif %} {% if event.valid_condition_ids|length >
event.matched_condition_ids|length %}
{{ cid[:16] }}{% if cid|length > 16 %}…{% endif %}
{% endfor %} {% if event.matched_condition_ids|length > 3 %}
+{{ event.matched_condition_ids|length - 3 }}
{% endif %}
{{ event.valid_condition_ids|length }} evaluated
{% endif %}
|
{% if event.triggered %}
{{ event.triggered_invocation_ids|length }}
{% for iid in event.triggered_invocation_ids[:3] %}
{% else %}
0
{% endif %}
{{ iid[:16] }}{% if iid|length > 16 %}…{% endif %}
{% endfor %} {% if event.triggered_invocation_ids|length > 3
%}
+{{ event.triggered_invocation_ids|length - 3 }}
{% endif %}
|
{% if event.emitted_by_invocation_id %}
{{ event.emitted_by_invocation_id }}
{% else %}
external
{% endif %}
|
Details |