{% macro fmt_bytes(b) %} {%- if b == 0 %}0 B {%- elif b < 1048576 %}{{ "%.1f"|format(b/1024) }} KB {%- elif b < 1073741824 %}{{ "%.1f"|format(b/1048576) }} MB {%- elif b < 1099511627776 %}{{ "%.1f"|format(b/1073741824) }} GB {%- else %}{{ "%.1f"|format(b/1099511627776) }} TB {%- endif %} {%- endmacro %} {% if not pools %}

Keine ZFS Pools verfügbar.

{% else %}
{% for pool in pools %} {% set pct = (pool.allocated / pool.size * 100)|int if pool.size else 0 %}
{{ pool.name }} {{ pool.health }}
{{ fmt_bytes(pool.allocated) }} / {{ fmt_bytes(pool.size) }} ({{ pct }}%) {% if pool.status and pool.status != 'ONLINE' %}

{{ pool.status }}

{% endif %}
{% endfor %}
{% endif %}