![Miguel Alex Cantu](/assets/img/avatar_default.png)
The alarming function of Telemetry has been seperated out by design. This patchset creates new containers for these alarming services and deploys them accordingly. See: http://lists.openstack.org/pipermail/openstack-dev/2015-September/073897.html DocImpact UpgradeImpact Implements: blueprint liberty-release Change-Id: I25294a25afa76d4d8bddad0a51c48485f33a6d20
19 lines
605 B
Django/Jinja
19 lines
605 B
Django/Jinja
# aodh API WSGI Pipeline
|
|
# Define the filters that make up the pipeline for processing WSGI requests
|
|
# Note: This pipeline is PasteDeploy's term rather than aodh's pipeline
|
|
# used for processing samples
|
|
|
|
# Remove authtoken from the pipeline if you don't want to use keystone authentication
|
|
[pipeline:main]
|
|
pipeline = request_id authtoken api-server
|
|
|
|
[app:api-server]
|
|
paste.app_factory = aodh.api.app:app_factory
|
|
|
|
[filter:authtoken]
|
|
paste.filter_factory = keystonemiddleware.auth_token:filter_factory
|
|
oslo_config_project = aodh
|
|
|
|
[filter:request_id]
|
|
paste.filter_factory = oslo_middleware:RequestId.factory
|