2016-06-15 18:10:08 +02:00
|
|
|
2. Edit the ``/etc/ceilometer/ceilometer.conf`` file and
|
|
|
|
complete the following actions:
|
|
|
|
|
2016-11-01 03:03:12 +00:00
|
|
|
* In the ``[DEFAULT]`` section, configure ``RabbitMQ``
|
|
|
|
message queue access:
|
2016-06-15 18:10:08 +02:00
|
|
|
|
|
|
|
.. code-block:: ini
|
|
|
|
|
|
|
|
[DEFAULT]
|
|
|
|
...
|
2016-11-01 03:03:12 +00:00
|
|
|
transport_url = rabbit://openstack:RABBIT_PASS@controller
|
2016-06-15 18:10:08 +02:00
|
|
|
|
|
|
|
Replace ``RABBIT_PASS`` with the password you chose for the
|
|
|
|
``openstack`` account in ``RabbitMQ``.
|
|
|
|
|
|
|
|
* In the ``[service_credentials]`` section, configure service
|
|
|
|
credentials:
|
|
|
|
|
|
|
|
.. code-block:: ini
|
|
|
|
|
|
|
|
[service_credentials]
|
|
|
|
...
|
2016-09-09 08:05:10 +08:00
|
|
|
auth_url = http://controller:5000
|
|
|
|
project_domain_id = default
|
|
|
|
user_domain_id = default
|
|
|
|
auth_type = password
|
|
|
|
username = ceilometer
|
|
|
|
project_name = service
|
|
|
|
password = CEILOMETER_PASS
|
2016-06-15 18:10:08 +02:00
|
|
|
interface = internalURL
|
|
|
|
region_name = RegionOne
|
|
|
|
|
|
|
|
Replace ``CEILOMETER_PASS`` with the password you chose for
|
|
|
|
the ``ceilometer`` user in the Identity service.
|
|
|
|
|
|
|
|
Configure Compute to use Telemetry
|
|
|
|
----------------------------------
|
|
|
|
|
|
|
|
* Edit the ``/etc/nova/nova.conf`` file and configure
|
|
|
|
notifications in the ``[DEFAULT]`` section:
|
|
|
|
|
|
|
|
.. code-block:: ini
|
|
|
|
|
|
|
|
[DEFAULT]
|
|
|
|
...
|
|
|
|
instance_usage_audit = True
|
|
|
|
instance_usage_audit_period = hour
|
|
|
|
notify_on_state_change = vm_and_task_state
|
|
|
|
|
|
|
|
[oslo_messaging_notifications]
|
|
|
|
...
|
|
|
|
driver = messagingv2
|