{% extends "base.html" %} {% block content %} {% if ceph_summary is not None or OS_summary is not None %}

Summary

{% if ceph_summary is not None %} {% endif OS_summary is not None %} {% endif %}
OSD count{{ceph_summary.osd_count}} Total Ceph disks count{{ceph_summary.OSD_hdd_count}}
Compute count{{OS_summary.compute_count}}
{% endif %} {% if perf_summary is not None %}

Random direct performance,
4KiB blocks

{% make_table(2, 'style="width: auto;" class="table table-bordered table-striped"', "Operation", "IOPS", Read, {{perf_summary.direct_iops_r_max[0]}} ~ {{perf_summary.direct_iops_r_max[1]}}%, Write, {{perf_summary.direct_iops_w_max[0]}} ~ {{perf_summary.direct_iops_w_max[1]}}%) %}
          

Random direct performance,
16MiB blocks

{% make_table(2, 'style="width: auto;" class="table table-bordered table-striped"', "Operation", "BW MiBps", Read, {{perf_summary.bw_read_max[0]}} ~ {{perf_summary.bw_read_max[1]}}%, Write, {{perf_summary.bw_write_max[0]}} ~ {{perf_summary.bw_write_max[1]}}%) %}
          

Maximal sync random write IOPS
for given latency, 4KiB

{% make_table(2, 'style="width: auto;" class="table table-bordered table-striped">', "Latency ms", "IOPS", 10, {{perf_summary.rws4k_10ms}}, 30, {{perf_summary.rws4k_30ms}}, 100, {{perf_summary.rws4k_100ms}}) %}

{% make_table_nh(2, "", {{perf_summary.rand_read_iops}}, {{perf_summary.rand_write_iops}}, {{perf_summary.rand_read_bw}}, {{perf_summary.rand_write_bw}}) %} {% endif %} {% endblock %}