{% extends load_base %} {% load i18n %} {% load gui_utils %} {% block javascript %} {% include "gui/node/monitoring_js.html" with graphs=graphs %} {% endblock %} {% block base_nav %} {% include "gui/node/navigation.html" with li_monitoring="active" %} {% include "gui/node/monitoring_navigation.html" with mon_disk="active" %} {% endblock %} {% block base_content %}
{% with desc_throughput=graph_items|keyvalue:'storage-throughput'|keyvalue:'desc' desc_io=graph_items|keyvalue:'storage-io'|keyvalue:'desc' desc_space=graph_items|keyvalue:'storage-space'|keyvalue:'desc' %}
{% for zpool in zpools %}
{{ node.hostname }} › {% blocktrans %}zpool {{ zpool }} › throughput{% endblocktrans %} {% include "gui/node/monitoring_graph.html" with desc=desc_throughput %}
{{ node.hostname }} › {% blocktrans %}zpool {{ zpool }} › I/O{% endblocktrans %} {% include "gui/node/monitoring_graph.html" with desc=desc_io %}
{{ node.hostname }} › {% blocktrans %}zpool {{ zpool }} › space{% endblocktrans %} {% include "gui/node/monitoring_graph.html" with desc=desc_space %}
{% endfor%}
{% endwith %} {% endblock %}