Merge "Support new osprofiler API"

This commit is contained in:
Jenkins 2016-10-25 14:45:43 +00:00 committed by Gerrit Code Review
commit 42485c7b65
2 changed files with 10 additions and 8 deletions

View File

@ -12,12 +12,13 @@
from oslo_config import cfg
from oslo_log import log as logging
import oslo_messaging
import osprofiler.notifier
import osprofiler.initializer
from osprofiler import opts as profiler_opts
import osprofiler.web
from neutron._i18n import _LI
from neutron import context
CONF = cfg.CONF
profiler_opts.set_defaults(CONF)
@ -33,11 +34,13 @@ def setup(name, host='0.0.0.0'): # nosec
specified host name / address usage is highly recommended.
"""
if CONF.profiler.enabled:
_notifier = osprofiler.notifier.create(
"Messaging", oslo_messaging, {},
oslo_messaging.get_transport(CONF), "neutron", name, host)
osprofiler.notifier.set(_notifier)
osprofiler.web.enable(CONF.profiler.hmac_keys)
osprofiler.initializer.init_from_conf(
conf=CONF,
context=context.get_admin_context(),
project="neutron",
service=name,
host=host
)
LOG.info(_LI("OSProfiler is enabled.\n"
"Traces provided from the profiler "
"can only be subscribed to using the same HMAC keys that "

View File

@ -33,7 +33,6 @@ from sqlalchemy.orm import exc
import traceback
from neutron._i18n import _LE
from neutron.common import profiler # noqa
def set_hook(engine):