{% extends "base.html" %} {% block title %}Sinks — Drakkar Debug{% endblock %} {% block content %}

Sinks

{% for s in sinks %} {% endfor %} {% if not sinks %} {% endif %}
Type Name Deliveries Payloads Errors Retries Last Delivery Duration Last Error
{{ s.sink_type }} {{ s.name }} {{ s.delivered_count }} {{ s.delivered_payloads }} {{ s.error_count }} {{ s.retry_count }} {{ format_ts(s.last_delivery_ts) or '-' }} {% if s.last_delivery_duration is not none %}{{ "%.3f"|format(s.last_delivery_duration) }}s{% else %}-{% endif %}
No sinks configured
{% endblock %}