From 3065ba5d13e9e95ac84945b74d1ea1c3432ff5c6 Mon Sep 17 00:00:00 2001 From: Kefu Chai Date: Mon, 21 Jan 2019 18:38:24 +0800 Subject: [PATCH] mgr/zabbix: drop "total_objects" field This field was removed from df output a while back in 342f309 Signed-off-by: Kefu Chai --- src/pybind/mgr/zabbix/module.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/pybind/mgr/zabbix/module.py b/src/pybind/mgr/zabbix/module.py index cd670b9166f..6b428dc0acc 100644 --- a/src/pybind/mgr/zabbix/module.py +++ b/src/pybind/mgr/zabbix/module.py @@ -171,7 +171,6 @@ class Module(MgrModule): df = self.get('df') data['num_pools'] = len(df['pools']) - data['total_objects'] = df['stats']['total_objects'] data['total_used_bytes'] = df['stats']['total_used_bytes'] data['total_bytes'] = df['stats']['total_bytes'] data['total_avail_bytes'] = df['stats']['total_avail_bytes']