From ff5fc750994c38b3ec17e91ed17ba6ad340f2e7f Mon Sep 17 00:00:00 2001 From: Konstantin Shalygin Date: Mon, 6 Sep 2021 14:54:23 +0700 Subject: [PATCH] mgr/prometheus: added `avail_raw` field for Pools DF Prometheus mgr module Fixes: https://tracker.ceph.com/issues/52512 Signed-off-by: Konstantin Shalygin (cherry picked from commit 3a78b9b6b8d8593ff3838b8efe630a210fd1a142) --- src/pybind/mgr/prometheus/module.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pybind/mgr/prometheus/module.py b/src/pybind/mgr/prometheus/module.py index c150b11efa5..d4dfd75a128 100644 --- a/src/pybind/mgr/prometheus/module.py +++ b/src/pybind/mgr/prometheus/module.py @@ -66,7 +66,7 @@ def health_status_to_number(status): DF_CLUSTER = ['total_bytes', 'total_used_bytes', 'total_used_raw_bytes'] -DF_POOL = ['max_avail', 'stored', 'stored_raw', 'objects', 'dirty', +DF_POOL = ['max_avail', 'avail_raw', 'stored', 'stored_raw', 'objects', 'dirty', 'quota_bytes', 'quota_objects', 'rd', 'rd_bytes', 'wr', 'wr_bytes', 'compress_bytes_used', 'compress_under_bytes'] -- 2.47.3