]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
mon: simplify discard queue health warning 68353/head
authorJaya Prakash <jayaprakash@ibm.com>
Mon, 13 Apr 2026 12:01:51 +0000 (12:01 +0000)
committerJaya Prakash <jayaprakash@ibm.com>
Mon, 13 Apr 2026 12:18:09 +0000 (12:18 +0000)
Fixes: https://tracker.ceph.com/issues/75983
Signed-off-by: Jaya Prakash <jayaprakash@ibm.com>
src/mon/PGMap.cc

index d6d1c0483fb3ab69f99affecedef6389262fe127..c5bbf8e95e08a0c77bdcb2477a4692eb3aa40819 100644 (file)
@@ -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";
       }