From 9fc46d52fc16bbadeddd2ffb5ee516262d65908b Mon Sep 17 00:00:00 2001 From: Konstantin Shalygin Date: Wed, 17 Jan 2018 13:59:41 +0700 Subject: [PATCH] mgr: dashboard: show per pool IOPS on health page (#22495). Signed-off-by: Konstantin Shalygin --- src/pybind/mgr/dashboard/health.html | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/src/pybind/mgr/dashboard/health.html b/src/pybind/mgr/dashboard/health.html index 37525af6d5e3..7816a606ee83 100644 --- a/src/pybind/mgr/dashboard/health.html +++ b/src/pybind/mgr/dashboard/health.html @@ -365,7 +365,8 @@ Name PG status Usage - Activity + Read + Write @@ -380,8 +381,16 @@ {pool.stats.max_avail.latest | dimless_binary } - {pool.stats.rd_bytes.rate | dimless } rd, { - pool.stats.wr_bytes.rate | dimless } wr + {pool.stats.rd_bytes.rate | dimless } + + + {pool.stats.rd.rate | dimless } ops + + + {pool.stats.wr_bytes.rate | dimless } + + + {pool.stats.wr.rate | dimless } ops -- 2.47.3