b33f32b714
This adds ceilometer-specific contents of the OpenStack Installation Guide in the ceilometer repo per [1]. A separate change will remove the ceilometer contents from the OpenStack Installation Guide for Newton per [2]. The ceilometer install-guide structure is based on Install Guide Cookiecutter [3]. Also adds tox.ini environment for install-guide and adds openstackdocs-theme to test-requirements.txt. [1] http://specs.openstack.org/openstack/docs-specs/specs/newton/project-specific-installguides.html [2] http://specs.openstack.org/openstack/docs-specs/specs/newton/installguide.html [3] https://review.openstack.org/#/c/314229/ Partially-Implements: blueprint projectspecificinstallguide Change-Id: Iffc5d7243e9eeb74c9dd7b559ef3de7123269293
1.1 KiB
1.1 KiB
Enable Image service meters
Telemetry uses notifications to collect Image service meters. Perform these steps on the controller node.
Configure the Image service to use Telemetry
- Edit the
/etc/glance/glance-api.conf
and/etc/glance/glance-registry.conf
files and complete the following actions:In the
[DEFAULT]
,[oslo_messaging_notifications]
, and[oslo_messaging_rabbit]
sections, configure notifications and RabbitMQ message broker access:[DEFAULT] ... rpc_backend = rabbit [oslo_messaging_notifications] ... driver = messagingv2 [oslo_messaging_rabbit] ... rabbit_host = controller rabbit_userid = openstack rabbit_password = RABBIT_PASS
Replace
RABBIT_PASS
with the password you chose for theopenstack
account inRabbitMQ
.
Finalize installation
Restart the Image service:
# service glance-registry restart # service glance-api restart