From 6eb7ab244d4a2d3b6d55a2a00b9e6ce4be1c4434 Mon Sep 17 00:00:00 2001 From: Yaarit Hatuka Date: Wed, 5 Feb 2020 13:56:13 -0500 Subject: [PATCH] mgr/devicehealth: set default monitoring to 'on' When devicehealth monitoring is 'off' telemetry module cannot generate device reports, once a user opts-in. Fixes: https://tracker.ceph.com/issues/44002 Signed-off-by: Yaarit Hatuka --- src/pybind/mgr/devicehealth/module.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pybind/mgr/devicehealth/module.py b/src/pybind/mgr/devicehealth/module.py index e28ebf84018..28241b1561f 100644 --- a/src/pybind/mgr/devicehealth/module.py +++ b/src/pybind/mgr/devicehealth/module.py @@ -29,7 +29,7 @@ class Module(MgrModule): MODULE_OPTIONS = [ { 'name': 'enable_monitoring', - 'default': False, + 'default': True, 'type': 'bool', 'desc': 'monitor device health metrics', 'runtime': True, -- 2.39.5