From: Sage Weil Date: Tue, 22 May 2018 21:55:03 +0000 (-0500) Subject: mon/MgrMonitor: change 'unresponsive' message to info level X-Git-Tag: v13.2.1~102^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=a7bc6e1e047da13a2c7777bcf416be0793ad3fa3;p=ceph.git mon/MgrMonitor: change 'unresponsive' message to info level 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 (cherry picked from commit 4ddbbe561c1e09d82b2f50e44c39896eca6bb5aa) --- diff --git a/qa/suites/rados/monthrash/ceph.yaml b/qa/suites/rados/monthrash/ceph.yaml index 3a97e6d3e68d..13c05e58cd9e 100644 --- a/qa/suites/rados/monthrash/ceph.yaml +++ b/qa/suites/rados/monthrash/ceph.yaml @@ -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 diff --git a/qa/suites/upgrade/jewel-x/parallel/1-jewel-install/jewel.yaml b/qa/suites/upgrade/jewel-x/parallel/1-jewel-install/jewel.yaml index a367ef37c12c..a7ff9f485d77 100644 --- a/qa/suites/upgrade/jewel-x/parallel/1-jewel-install/jewel.yaml +++ b/qa/suites/upgrade/jewel-x/parallel/1-jewel-install/jewel.yaml @@ -23,7 +23,6 @@ tasks: - \(PG_ - Monitor daemon marked osd - Behind on trimming - - is unresponsive conf: global: mon warn on pool no app: false diff --git a/src/mon/MgrMonitor.cc b/src/mon/MgrMonitor.cc index 084f0a9dad54..6b4eab48fdc9 100644 --- a/src/mon/MgrMonitor.cc +++ b/src/mon/MgrMonitor.cc @@ -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) {