{% extends "base.html" %} {% block html_title %}{{ object.name }} I/O statistics{% endblock %} {% block page_title %}{{ object.name }} I/O statistics{% endblock %} {% block meta %} {% endblock %} {% block content %} {% if clients_data %} {% for client_obj in clients_data %} {% endfor %}
Client Read/s Write/s Read, IO/s Write, IO/s Total data rate/s Total, IO/s
{{ client_obj.client_hostname }} {{ client_obj.bytes_read_sec|filesizeformat }} {{ client_obj.bytes_write_sec|filesizeformat }} {{ client_obj.io_read_sec }} {{ client_obj.io_write_sec }} {{ client_obj.bytes_sec|filesizeformat }} {{ client_obj.io_sec }}
Total {{ global_stats.bytes_read_sec|filesizeformat }} {{ global_stats.bytes_write_sec|filesizeformat }} {{ global_stats.io_read_sec}} {{ global_stats.io_write_sec}} {{ global_stats.bytes_sec|filesizeformat }} {{ global_stats.io_sec}}
{% else %}

No data collected for this volume yet

{% endif %}

Back to volumes

{% endblock %}