openstack-manuals/doc/install-guide/source/ceilometer-glance.rst
Matthew Kassawara b4e78e0888 [install] Liberty updates for ceilometer
Update ceilometer configuration for Liberty.

Changes and testing specific to distribution packages
primarily involve Ubuntu. Other distributions may require
additional patches.

Implements: bp installguide-liberty
Change-Id: Ie0c2449bad5c780b02b1d76f78665ae501668c20
2015-11-04 16:50:08 -07:00

1.2 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:

  1. In the [DEFAULT] section, configure notifications and RabbitMQ message broker access:

    [DEFAULT]
    ...
    notification_driver = messagingv2
    rpc_backend = rabbit
    rabbit_host = controller
    rabbit_userid = openstack
    rabbit_password = RABBIT_PASS

    Replace RABBIT_PASS with the password you chose for the openstack account in RabbitMQ.

Finalize installation

obs or rdo

  1. Restart the Image service:

    # systemctl restart openstack-glance-api.service openstack-glance-registry.service

ubuntu

  1. Restart the Image service:

    # service glance-registry restart
    # service glance-api restart