From c803f38a17af625edc1cee29f21e510a03396204 Mon Sep 17 00:00:00 2001 From: Wido den Hollander Date: Wed, 31 Jan 2018 13:15:05 +0100 Subject: [PATCH] mgr/influx: Send more information about pools In addition to the existing statistics also send Read and Write IOps, but also quota information. Signed-off-by: Wido den Hollander --- src/pybind/mgr/influx/module.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/pybind/mgr/influx/module.py b/src/pybind/mgr/influx/module.py index 09d99e44bd8..a5d50a2d8d5 100644 --- a/src/pybind/mgr/influx/module.py +++ b/src/pybind/mgr/influx/module.py @@ -79,12 +79,17 @@ class Module(MgrModule): df_types = [ 'bytes_used', + 'kb_used', 'dirty', + 'rd', 'rd_bytes', 'raw_bytes_used', + 'wr', 'wr_bytes', 'objects', - 'max_avail' + 'max_avail', + 'quota_objects', + 'quota_bytes' ] for df_type in df_types: -- 2.39.5