Do not use api-paste.ini osprofiler options

Starting with opsrofiler 0.3.1 release there is no need to set HMAC_KEYS
and ENABLED arguments in the api-paste.ini file, this can be set in the
trove.conf configuration file.

Change-Id: Icbeb8bb09536bad88907fe590fa70386199ce03d
This commit is contained in:
Dina Belova 2015-11-13 13:45:15 +03:00
parent 8ede0e3278
commit ef47f29e5e
3 changed files with 5 additions and 4 deletions

View File

@ -34,8 +34,6 @@ paste.filter_factory = trove.common.limits:RateLimitingMiddleware.factory
[filter:osprofiler]
paste.filter_factory = osprofiler.web:WsgiMiddleware.factory
hmac_keys = SECRET_KEY
enabled = yes
[app:troveapp]
paste.app_factory = trove.common.api:app_factory

View File

@ -404,7 +404,9 @@ profiler_opts = [
cfg.BoolOpt("enabled", default=False,
help="If False fully disable profiling feature."),
cfg.BoolOpt("trace_sqlalchemy", default=True,
help="If False doesn't trace SQL requests.")
help="If False doesn't trace SQL requests."),
cfg.StrOpt("hmac_keys", default="SECRET_KEY",
help="Secret key to use to sign tracing messages."),
]

View File

@ -35,8 +35,9 @@ def setup_profiler(binary, host):
"Messaging", messaging, context.get_admin_context().to_dict(),
rpc.TRANSPORT, "trove", binary, host)
notifier.set(_notifier)
web.enable(CONF.profiler.hmac_keys)
LOG.warn(_LW("The OpenStack Profiler is enabled. Using one of the "
"hmac_keys specified in the api-paste.ini file "
"hmac_keys specified in the trove.conf file "
"(typically in /etc/trove), a trace can be made of all "
"requests. Only an admin user can retrieve the trace "
"information, however.\n"