{% extends "base.html" %} {% block title %}Trace {{ partition_id }}:{{ offset }} — Drakkar Debug{% endblock %} {% block content %}

Message Trace

partition={{ partition_id }} offset={{ offset }} ← partition {{ partition_id }}
{% if events %}
{% for e in events %}
{{ e.event }} {{ format_ts_full(e.ts) }}
{% if e.task_id %}
task: {{ e.task_id }}
{% endif %} {% if e.offset is not none %}
offset: {{ e.offset }}
{% endif %} {% if e.exit_code is not none %}
exit: {{ e.exit_code }}
{% endif %} {% if e.duration is not none %}
duration: {{ "%.3f"|format(e.duration) }}s
{% endif %} {% if e.stdout_size %}
stdout: {{ e.stdout_size }}B
{% endif %} {% if e.output_topic %}
topic: {{ e.output_topic }}
{% endif %}
{% if e.args %}
args: {{ e.args }}
{% endif %} {% if e.stdout %}
stdout
{{ e.stdout }}
{% endif %} {% if e.stderr %}
stderr
{{ e.stderr }}
{% endif %} {% if e.metadata %}
metadata: {{ e.metadata }}
{% endif %}
{% endfor %}
{% else %}
No events found for this message
{% endif %} {% endblock %}