]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
mon/MgrMonitor: change 'unresponsive' message to info level 22158/head
authorSage Weil <sage@redhat.com>
Tue, 22 May 2018 21:55:03 +0000 (16:55 -0500)
committerSage Weil <sage@redhat.com>
Tue, 22 May 2018 21:55:03 +0000 (16:55 -0500)
We generate a MGR_DOWN health warning at the appropriate points; having
this at WRN level just triggers failed teuthology runs but doesn't much
value for the user.

Clear out teuthology whitelisting for this message.

Fixes: http://tracker.ceph.com/issues/24222
Signed-off-by: Sage Weil <sage@redhat.com>
qa/suites/rados/monthrash/ceph.yaml
qa/suites/upgrade/jewel-x/parallel/1-jewel-install/jewel.yaml
src/mon/MgrMonitor.cc

index f34b8c267c1cf501c43cd767a620ebb2c03327e4..66dc03c80ab1cb6248b2da112c65c74c5aa962a9 100644 (file)
@@ -10,7 +10,6 @@ overrides:
         mon osdmap full prune txsize: 2
 # thrashing monitors may make mgr have trouble w/ its keepalive
     log-whitelist:
-      - daemon x is unresponsive
       - overall HEALTH_
       - \(MGR_DOWN\)
 # slow mons -> slow peering -> PG_AVAILABILITY
index a367ef37c12c5c2fcba0ffc2c2a37a1b83e1a5b6..a7ff9f485d77136384bb2b35f8f49b9c0235522e 100644 (file)
@@ -23,7 +23,6 @@ tasks:
       - \(PG_
       - Monitor daemon marked osd
       - Behind on trimming
-      - is unresponsive
     conf:
       global:
         mon warn on pool no app: false
index 0d554286e864133db81ab796f8d2679e2fe4a688..793c6282503281d57b3b6309a82b0788fb4ea130 100644 (file)
@@ -577,7 +577,7 @@ void MgrMonitor::tick()
                         << " daemon " << pending_map.active_name;
     } else {
       dout(4) << "Active is laggy but have no standbys to replace it" << dendl;
-      mon->clog->warn() << "Manager daemon " << old_active_name
+      mon->clog->info() << "Manager daemon " << old_active_name
                         << " is unresponsive.  No standby daemons available.";
     }
   } else if (pending_map.active_gid == 0) {