From: Joao Eduardo Luis Date: Wed, 10 Jun 2015 00:55:21 +0000 (+0100) Subject: mon: Monitor: mark events X-Git-Tag: v9.1.0~535^2~18 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=98e470a1789bc58eab2c55ad81be56a707cae9de;p=ceph.git mon: Monitor: mark events Signed-off-by: Joao Eduardo Luis --- diff --git a/src/mon/Monitor.cc b/src/mon/Monitor.cc index e2bb76a5aecc..4e4f7a61478a 100644 --- a/src/mon/Monitor.cc +++ b/src/mon/Monitor.cc @@ -3400,7 +3400,7 @@ void Monitor::_ms_dispatch(Message *m) void Monitor::dispatch(MonOpRequestRef op) { - op->mark_event("monitor_dispatch"); + op->mark_event("mon:dispatch"); ConnectionRef connection = op->get_connection(); MonSession *s = NULL; MonCap caps; @@ -3489,7 +3489,7 @@ void Monitor::dispatch(MonOpRequestRef op) void Monitor::dispatch_op(MonOpRequestRef op) { - op->mark_event("monitor_dispatch_op"); + op->mark_event("mon:dispatch_op"); /* deal with all messages that do not necessarily need caps */ bool dealt_with = true; switch (op->get_req()->get_type()) {