]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
mgr: dashboard: show per pool IOPS on health page (#22495). 19981/head
authorKonstantin Shalygin <k0ste@k0ste.ru>
Wed, 17 Jan 2018 06:59:41 +0000 (13:59 +0700)
committerKonstantin Shalygin <k0ste@k0ste.ru>
Thu, 18 Jan 2018 12:43:16 +0000 (19:43 +0700)
Signed-off-by: Konstantin Shalygin <k0ste@k0ste.ru>
src/pybind/mgr/dashboard/health.html

index 37525af6d5e3d2165563db937681d4d5c8a89ed9..7816a606ee83f0bcbf79ac6e7c4e8d7ef7761dad 100644 (file)
                             <th>Name</th>
                             <th>PG status</th>
                             <th>Usage</th>
-                            <th>Activity</th>
+                            <th colspan="2">Read</th>
+                            <th colspan="2">Write</th>
                             </thead>
                             <tbody>
                             <tr rv-each-pool="pools">
                                     {pool.stats.max_avail.latest | dimless_binary }
                                 </td>
                                 <td>
-                                    {pool.stats.rd_bytes.rate | dimless } rd, {
-                                    pool.stats.wr_bytes.rate | dimless } wr
+                                    {pool.stats.rd_bytes.rate | dimless }
+                                </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>
                             </tr>
                             </tbody>