Merge pull request #19981 from k0ste/dashboard_iops

mgr: dashboard: show per pool IOPS on health page (#22495).

Reviewed-by: John Spray <john.spray@redhat.com>
This commit is contained in:
John Spray 2018-01-18 12:46:30 +00:00 committed by GitHub
commit 22d6d908a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -365,7 +365,8 @@
<th>Name</th> <th>Name</th>
<th>PG status</th> <th>PG status</th>
<th>Usage</th> <th>Usage</th>
<th>Activity</th> <th colspan="2">Read</th>
<th colspan="2">Write</th>
</thead> </thead>
<tbody> <tbody>
<tr rv-each-pool="pools"> <tr rv-each-pool="pools">
@ -380,8 +381,16 @@
{pool.stats.max_avail.latest | dimless_binary } {pool.stats.max_avail.latest | dimless_binary }
</td> </td>
<td> <td>
{pool.stats.rd_bytes.rate | dimless } rd, { {pool.stats.rd_bytes.rate | dimless }
pool.stats.wr_bytes.rate | dimless } wr </td>
<td>
{pool.stats.rd.rate | dimless } ops
</td>
<td>
{pool.stats.wr_bytes.rate | dimless }
</td>
<td>
{pool.stats.wr.rate | dimless } ops
</td> </td>
</tr> </tr>
</tbody> </tbody>