Skip to content

Commit

Permalink
mds: better output of 'ceph health detail'
Browse files Browse the repository at this point in the history
fixes:http://tracker.ceph.com/issues/39266

Signed-off-by: Shen Hang <harryshen18@gmail.com>
(cherry picked from commit 396cee5)
  • Loading branch information
shenhang authored and ashishkumsingh committed Apr 29, 2019
1 parent f4139a8 commit 34b68e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mds/Beacon.cc
Expand Up @@ -388,7 +388,7 @@ void Beacon::notify_health(MDSRank const *mds)
(session->get_num_trim_flushes_warnings() > 0 &&
session->get_num_completed_flushes() >= max_completed_flushes)) {
std::ostringstream oss;
oss << "Client " << session->get_human_name() << " failing to advance its oldest client/flush tid";
oss << "Client " << session->get_human_name() << " failing to advance its oldest client/flush tid. ";
MDSHealthMetric m(MDS_HEALTH_CLIENT_OLDEST_TID, HEALTH_WARN, oss.str());
m.metadata["client_id"] = stringify(session->get_client());
large_completed_requests_metrics.push_back(m);
Expand Down

0 comments on commit 34b68e9

Please sign in to comment.