From: xie xingguo Date: Wed, 5 Jul 2017 08:28:48 +0000 (+0800) Subject: osd/OSD.cc: fix tracked keys X-Git-Tag: v12.1.1~101^2~7 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=a5bab2dafbdecf34ac7a3e6026583ae829be7200;p=ceph.git 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 --- 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",