Repository URL to install this package:
| 
      
        
        
        Version: 
        
         
          
          4.2.50  ▾
        
         | 
# Copyright 2018 TrilioData Inc.
# All Rights Reserved.
import socket
from oslo_utils import importutils
from oslo_log import log
import webob.dec
import dmapi.conf
profiler_initializer = importutils.try_import('osprofiler.initializer')
profiler = importutils.try_import('osprofiler.profiler')
profiler_web = importutils.try_import('osprofiler.web')
CONF = dmapi.conf.CONF
LOG = log.getLogger(__name__)
class WsgiMiddleware(object):
    def __init__(self, application, **kwargs):
        self.application = application
    @classmethod
    def factory(cls, global_conf, **local_conf):
        if profiler_web:
            return profiler_web.WsgiMiddleware.factory(global_conf,
                                                       **local_conf)
        def filter_(app):
            return cls(app, **local_conf)
        return filter_
    @webob.dec.wsgify
    def __call__(self, request):
        return request.get_response(self.application)
def get_traced_meta():
    if profiler and 'profiler' in CONF and CONF.profiler.enabled:
        return profiler.TracedMeta
    else:
        # NOTE(rpodolyaka): if we do not return a child of type, then Python
        # fails to build a correct MRO when osprofiler is not installed
        class NoopMeta(type):
            pass
        return NoopMeta
def trace_cls(name, **kwargs):
    """Wrap the OSProfiler trace_cls decorator so that it will not try to
    patch the class unless OSProfiler is present and enabled in the config
    :param name: The name of action. E.g. wsgi, rpc, db, etc..
    :param kwargs: Any other keyword args used by profiler.trace_cls
    """
    def decorator(cls):
        if profiler and 'profiler' in CONF and CONF.profiler.enabled:
            trace_decorator = profiler.trace_cls(name, kwargs)
            return trace_decorator(cls)
        return cls
    return decorator
def setup(conf):
    if hasattr(conf, 'profiler') and conf.profiler.enabled:
        profiler_initializer.init_from_conf(
            conf=conf,
            context={},
            project=conf.project,
            service=conf.prog,
            host=socket.gethostbyname(socket.gethostname()))
        LOG.info('OSprofiler is enabled.')