From a5bab2dafbdecf34ac7a3e6026583ae829be7200 Mon Sep 17 00:00:00 2001 From: xie xingguo Date: Wed, 5 Jul 2017 16:28:48 +0800 Subject: [PATCH] osd/OSD.cc: fix tracked keys osd_max_trimming_pgs, osd_op_history_slow_op_size and osd_op_history_slow_op_threshold shall be in the tracked key list but they are not. Signed-off-by: xie xingguo --- src/osd/OSD.cc | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/osd/OSD.cc b/src/osd/OSD.cc index 925c6e6452d..74f35c2c8bb 100644 --- a/src/osd/OSD.cc +++ b/src/osd/OSD.cc @@ -9353,8 +9353,13 @@ const char** OSD::get_tracked_conf_keys() const static const char* KEYS[] = { "osd_max_backfills", "osd_min_recovery_priority", - "osd_op_complaint_time", "osd_op_log_threshold", - "osd_op_history_size", "osd_op_history_duration", + "osd_max_trimming_pgs", + "osd_op_complaint_time", + "osd_op_log_threshold", + "osd_op_history_size", + "osd_op_history_duration", + "osd_op_history_slow_op_size", + "osd_op_history_slow_op_threshold", "osd_enable_op_tracker", "osd_map_cache_size", "osd_map_max_advance", -- 2.39.5