Files
cloudkitty/doc/source/devstack.rst
Gauvain Pocentek f9a16c5d50 devstack: support the gnocchi collector
Actually use CLOUDKITTY_COLLECTOR to setup the ceilometer/gnocchi
collectors.

Update the documentation accordingly.

Change-Id: I7308c0597c0ae9dac435cf1c0cc2e3b4c07ba063
2016-12-13 22:35:09 +00:00

49 lines
1.1 KiB
ReStructuredText

#####################
DevStack installation
#####################
Add the following lines in your ``local.conf`` file to enable CloudKitty with
the ceilometer collector:
::
[[local|localrc]]
# ceilometer
enable_plugin ceilometer https://git.openstack.org/openstack/ceilometer.git master
# horizon
enable_service horizon
# cloudkitty
enable_plugin cloudkitty https://git.openstack.org/openstack/cloudkitty.git master
enable_service ck-api ck-proc
CLOUDKITTY_COLLECTOR=ceilometer
To enable the gnocchi collector, use the following instead:
::
[[local|localrc]]
# gnocchi
enable_plugin gnocchi https://github.com/openstack/gnocchi master
enable_service gnocchi-api,gnocchi-metricd
# ceilometer
enable_plugin ceilometer https://git.openstack.org/openstack/ceilometer.git master
# horizon
enable_service horizon
# cloudkitty
enable_plugin cloudkitty https://git.openstack.org/openstack/cloudkitty.git master
enable_service ck-api ck-proc
CLOUDKITTY_COLLECTOR=gnocchi
Then start devstack:
::
./stack.sh