From d4d6bdd3db2b4382da72b40f6dabd85a3dbaaf1f Mon Sep 17 00:00:00 2001 From: Don Capito Date: Fri, 7 Nov 2025 20:57:30 +0000 Subject: [PATCH] feat: add Used SSD stats --- collector.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/collector.py b/collector.py index d46311b..62e360c 100644 --- a/collector.py +++ b/collector.py @@ -659,7 +659,7 @@ def gather(self): fs['ssd_percent_used'] = float(fs["used_ssd"]) / float(fs["available_ssd"]) * 100 for fs_stat in ['available_total', 'used_total', 'available_ssd', 'used_ssd', 'total_percent_used', - 'ssd_percent_used']: + 'ssd_percent_used', 'used_ssd_metadata', 'used_ssd_data']: metric_objs['weka_fs'].add_metric([str(self.cluster), fs["name"], fs_stat], fs[fs_stat]) except: