* Add osprofiler wsgi middleware. This middleware is used for 2 things:
1) It checks that person who wants to trace is trusted and knows
secret HMAC key.
2) It starts tracing in case of proper trace headers
and adds first wsgi trace point, with info about HTTP request
* Add initialization of osprofiler at start of service
Currently that includes oslo.messaging notifer instance creation
to send Ceilometer backend notifications.
* Traces HTTP/RPC/DB API calls
Demo: https://hieulq.github.io/cluster-create-false-new-html.html
Co-Authored-By: Hieu LE <hieulq@vn.fujitsu.com>
Implements: blueprint osprofiler-support-in-magnum
Change-Id: I7d68995aab81d365433950aada078ef1fcd5469b
29 lines
868 B
INI
29 lines
868 B
INI
[pipeline:main]
|
|
pipeline = cors healthcheck http_proxy_to_wsgi request_id osprofiler authtoken api_v1
|
|
|
|
[app:api_v1]
|
|
paste.app_factory = magnum.api.app:app_factory
|
|
|
|
[filter:authtoken]
|
|
acl_public_routes = /, /v1
|
|
paste.filter_factory = magnum.api.middleware.auth_token:AuthTokenMiddleware.factory
|
|
|
|
[filter:osprofiler]
|
|
paste.filter_factory = magnum.common.profiler:WsgiMiddleware.factory
|
|
|
|
[filter:request_id]
|
|
paste.filter_factory = oslo_middleware:RequestId.factory
|
|
|
|
[filter:cors]
|
|
paste.filter_factory = oslo_middleware.cors:filter_factory
|
|
oslo_config_project = magnum
|
|
|
|
[filter:healthcheck]
|
|
paste.filter_factory = oslo_middleware:Healthcheck.factory
|
|
backends = disable_by_file
|
|
disable_by_file_path = /etc/magnum/healthcheck_disable
|
|
|
|
[filter:http_proxy_to_wsgi]
|
|
paste.filter_factory = oslo_middleware.http_proxy_to_wsgi:HTTPProxyToWSGI.factory
|
|
oslo_config_project = magnum
|