From: Joao Eduardo Luis Date: Wed, 17 Jun 2015 12:00:26 +0000 (+0100) Subject: mon: MonOpRequest: change service names in mark_*_event() X-Git-Tag: v9.1.0~535^2~34 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=91457df74595e61430994e6fa4dd5b712a24237f;p=ceph.git mon: MonOpRequest: change service names in mark_*_event() Signed-off-by: Joao Eduardo Luis --- diff --git a/src/mon/MonOpRequest.h b/src/mon/MonOpRequest.h index 0c5f78b76d6f..e81eab21d53b 100644 --- a/src/mon/MonOpRequest.h +++ b/src/mon/MonOpRequest.h @@ -42,19 +42,19 @@ struct MonOpRequest : public TrackedOp { } void mark_logmon_event(const string &event) { - mark_svc_event("logmon", event); + mark_svc_event("logm", event); } void mark_osdmon_event(const string &event) { - mark_svc_event("osdmon", event); + mark_svc_event("osdmap", event); } void mark_pgmon_event(const string &event) { - mark_svc_event("pgmon", event); + mark_svc_event("pgmap", event); } void mark_mdsmon_event(const string &event) { - mark_svc_event("mdsmon", event); + mark_svc_event("mdsmap", event); } void mark_authmon_event(const string &event) { - mark_svc_event("authmon", event); + mark_svc_event("auth", event); } void mark_paxos_event(const string &event) { mark_svc_event("paxos", event);