How to configure Devstack with Ceilometer, Gnocchi and Aodh components?
Hi, I've installed ceilometer, gnocchi and aodh components through devstack by adding the following lines in the local.conf described devstack installation guide.
enable_plugin ceilometer https://git.openstack.org/openstack/ceilometer stable/rocky
enable_plugin gnocchi https://github.com/gnocchixyz/gnocchi stable/4.2
enable_plugin aodh https://git.openstack.org/openstack/aodh
The installation finished without any errors; however, the output of gnocchi meter list is nothing. So, I think I'm missing something in the installation. In case this helps, the output of ps -ef | grep 'gnocchi' is as follows:
stack 927 1 0 Nov04 ? 00:00:04 /usr/bin/python /usr/local/bin/gnocchi-statsd -d --config-file /etc/gnocchi/gnocchi.conf
stack 946 1 0 Nov04 ? 00:00:00 gnocchi-metricd: master process [/usr/local/bin/gnocchi-metricd -d --config-file /etc/gnocchi/gnocchi.conf]
stack 2415 2410 0 Nov04 ? 00:00:06 (wsgi:gnocchi) -k start
stack 2416 2410 0 Nov04 ? 00:00:05 (wsgi:gnocchi) -k start
stack 2697 946 0 Nov04 ? 00:00:13 gnocchi-metricd: processing worker(0)
stack 2700 946 0 Nov04 ? 00:00:14 gnocchi-metricd: processing worker(1)
stack 2703 946 0 Nov04 ? 00:00:13 gnocchi-metricd: processing worker(2)
stack 2705 946 0 Nov04 ? 00:00:14 gnocchi-metricd: processing worker(3)
stack 2707 946 0 Nov04 ? 00:00:01 gnocchi-metricd: reporting worker(0)
stack 2709 946 0 Nov04 ? 00:00:02 gnocchi-metricd: janitor worker(0)
How do I even verify if gnocchi and ceilometer are configured correctly. Also, what is the proper way of easily installing these 3 components? Any help would be much appreciated. Thanks!