From: Jaya Prakash Date: Mon, 13 Apr 2026 12:01:51 +0000 (+0000) Subject: mon: simplify discard queue health warning X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=0ea899acd5d746b7ab036e3cdee4533a12d1fd48;p=ceph.git mon: simplify discard queue health warning Fixes: https://tracker.ceph.com/issues/75983 Signed-off-by: Jaya Prakash --- diff --git a/src/mon/PGMap.cc b/src/mon/PGMap.cc index d6d1c0483fb3..c5bbf8e95e08 100644 --- a/src/mon/PGMap.cc +++ b/src/mon/PGMap.cc @@ -3329,9 +3329,7 @@ void PGMap::get_health_checks( } else if (asum.first == "DB_DEVICE_STALLED_READ_ALERT") { summary += " experiencing stalled read in db device of BlueFS"; } else if (asum.first.find("_DISCARD_QUEUE") != std::string::npos) { - for (auto str : asum.second.second) { - summary += str; - } + summary += " experiencing slow discard operations"; } else if (asum.first == "BLUESTORE_FREE_FRAGMENTATION") { summary += " experiencing high free space fragmentation of BlueStore"; }