From 3de57e87b1dd126cb3116e9f6a75dae5e096b51d Mon Sep 17 00:00:00 2001 From: Vitaliy Filippov Date: Sat, 24 Dec 2022 02:47:48 +0300 Subject: [PATCH] Recheck OSD tree in monitor on /osd/stats changes --- mon/mon.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/mon/mon.js b/mon/mon.js index 5a0aafe4..f7b6371e 100644 --- a/mon/mon.js +++ b/mon/mon.js @@ -1693,6 +1693,7 @@ class Mon // Do not clear these to null kv.value = kv.value || {}; } + const old = cur[key_parts[key_parts.length-1]]; cur[key_parts[key_parts.length-1]] = kv.value; if (key === 'config/global') { @@ -1717,6 +1718,11 @@ class Mon } else if (key_parts[0] === 'osd' && key_parts[1] === 'stats') { + // Recheck OSD tree on OSD addition/deletion + if ((!old) != (!kv.value) || old && kv.value && (old.size != kv.value.size || old.time != kv.value.time)) + { + this.schedule_recheck(); + } // Recheck PGs later this.schedule_next_recheck_at( !this.state.osd.stats[key[2]] ? 0 : this.state.osd.stats[key[2]].time+this.config.osd_out_time