{% extends "base.html" %} {% from '_kafka_ui_icon.html' import kafka_ui_icon %} {% block title %}Partition {{ partition_id }} — Drakkar Debug{% endblock %} {% block content %}
| Time | Event | Offset | Task ID | Duration | Exit | Stdout | Details |
|---|---|---|---|---|---|---|---|
| {{ format_ts(e.ts) }} | {% if e.event == 'task_completed' %} {{ e.event }} {% elif e.event == 'task_failed' %} {{ e.event }} {% elif e.event == 'task_started' %} {{ e.event }} {% elif e.event == 'committed' %} {{ e.event }} {% else %} {{ e.event }} {% endif %} | {% if e.offset is not none %} {{ e.offset }}{{ kafka_ui_icon(kafka_source_topic, partition_id, e.offset) }} {% endif %} | {% if e.task_id %}{{ e.task_id }}{% endif %} | {% if e.duration is not none %}{{ "%.2f"|format(e.duration) }}s{% endif %} | {{ e.exit_code if e.exit_code is not none else '' }} | {% if e.stdout_size %}{{ e.stdout_size }}B{% endif %} | {{ e.args or e.metadata or '' }} |