]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
osd/OSD.cc: fix tracked keys
authorxie xingguo <xie.xingguo@zte.com.cn>
Wed, 5 Jul 2017 08:28:48 +0000 (16:28 +0800)
committerxie xingguo <xie.xingguo@zte.com.cn>
Fri, 7 Jul 2017 00:43:16 +0000 (08:43 +0800)
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 <xie.xingguo@zte.com.cn>
src/osd/OSD.cc

index 925c6e6452d69f2baaa09643d68463306e4c165b..74f35c2c8bb3e0ffb13549088c088705e79f8abf 100644 (file)
@@ -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",