{% from "partials/_macros.html" import card_header %}
{{ card_header("rows per collector (since latest run)") }} {% if row_counts %} {% set maxr = row_counts | map(attribute='rows') | max %} {% for r in row_counts %} {% endfor %}
collector rows
{{ r.name }} {{ r.rows }}
{% set pct = (r.rows / maxr * 100) if maxr > 0 else 0 %}
{% else %}
no run yet
{% endif %}