From cce1ce9530db9c4eee35579f0a4ee0b9b1fd2d7f Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Thu, 16 Aug 2018 10:59:06 -0500 Subject: [PATCH] mgr/devicehealth: 10m wakeup interval is sufficient We are scraping daily, so 10m is plenty often. The life expectancy for devices is also rarely updated, and anyone who does update it can explicitly 'ceph device check-health' afterwards if they want a quick response. Signed-off-by: Sage Weil --- 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 f75969b96bab5..937cab3d66d2f 100644 --- a/src/pybind/mgr/devicehealth/module.py +++ b/src/pybind/mgr/devicehealth/module.py @@ -21,7 +21,7 @@ DEFAULTS = { 'mark_out_threshold': str(86400*14), 'warn_threshold': str(86400*14*2), 'self_heal': str(True), - 'sleep_interval': str(60), + 'sleep_interval': str(600), } DEVICE_HEALTH = 'DEVICE_HEALTH' -- 2.39.5