Juju Charm - Ceilometer
Go to file
Billy Olsen 09100f95b6 Use peer_retrieve to get secrets from other nodes.
The secret sharing previously worked because it used the peer storage
prior to leadership election due to the direct usage of relation_get
rather than using the retrieval methods provided by the peer storage
framework.

Closes Bug: #1541618

(cherry picked from commit fafc1d4ff5)

Change-Id: I9ed88f17bf8659eeaeab4b86fea5c7710611a779
2016-03-30 13:10:01 -07:00
actions Use aodh-notifier and aodh-evaluator starting in Mitaka 2016-01-06 14:59:34 +00:00
charmhelpers [corey.bryant,r=osci] Sync charm-helpers. 2016-01-08 02:37:03 +00:00
hooks Use peer_retrieve to get secrets from other nodes. 2016-03-30 13:10:01 -07:00
lib Use aodh-notifier and aodh-evaluator starting in Mitaka 2016-01-06 14:59:34 +00:00
ocf/openstack Account for ssl port monitoring. 2014-12-17 16:22:18 -07:00
templates Adds the api_workers option 2015-07-09 18:31:30 -03:00
tests Shape up the stable branches for maintenance. 2016-03-16 11:39:25 -07:00
unit_tests Use peer_retrieve to get secrets from other nodes. 2016-03-30 13:10:01 -07:00
.coveragerc Add unit tests, tidylint 2013-10-20 12:32:35 -07:00
.gitignore Shape up the stable branches for maintenance. 2016-03-16 11:39:25 -07:00
.gitreview Shape up the stable branches for maintenance. 2016-03-16 11:39:25 -07:00
.project Add missing files 2013-03-31 12:21:09 +01:00
.pydevproject Add unit tests, tidylint 2013-10-20 12:32:35 -07:00
.testr.conf Add tox support 2015-11-02 09:42:43 +00:00
Makefile Move 00-setup to prevent extra, unnecessary bootstrap in test runs. 2016-01-08 21:44:48 +00:00
README.md Update documentation for relations per https://wiki.ubuntu.com/ServerTeam/OpenStackCharms/ReleaseNotes1501#Ceilometer 2015-02-05 10:38:48 +10:00
actions.yaml Rebased on trunk 2015-09-22 15:34:48 +00:00
charm-helpers-hooks.yaml [gnuoy,trivial] Pre-release charmhelper sync to pickup cli module 2015-07-31 14:11:37 +01:00
charm-helpers-tests.yaml Added amulet tests 2015-02-17 14:09:16 +00:00
config.yaml Fix lp:1522130 Add sane haproxy timeout defaults and make them configurable. 2015-12-07 15:08:12 -08:00
copyright Update copyright for ceilometer-agent-central pacemaker agent 2015-04-22 10:00:37 -03:00
icon.svg [trivial] Add icon 2014-01-31 12:01:25 +00:00
metadata.yaml Update maintainer 2015-11-18 10:28:26 +00:00
requirements.txt Add tox support 2015-11-02 09:42:43 +00:00
revision resync charmhelper 2014-03-12 13:10:19 +01:00
setup.cfg Account for ssl port monitoring. 2014-12-17 16:22:18 -07:00
test-requirements.txt Update to charm-tools >= 2.0.0 2016-03-30 12:59:11 -07:00
tox.ini Update to charm-tools >= 2.0.0 2016-03-30 12:59:11 -07:00

README.md

Overview

This charm provides the Ceilometer service for OpenStack. It is intended to be used alongside the other OpenStack components, starting with the Folsom release.

Ceilometer is made up of 2 separate services: an API service, and a collector service. This charm allows them to be deployed in different combination, depending on user preference and requirements.

This charm was developed to support deploying Folsom on both Ubuntu Quantal and Ubuntu Precise. Since Ceilometer is only available for Ubuntu 12.04 via the Ubuntu Cloud Archive, deploying this charm to a Precise machine will by default install Ceilometer and its dependencies from the Cloud Archive.

Usage

In order to deploy Ceilometer service, the MongoDB service is required:

juju deploy mongodb
juju deploy ceilometer
juju add-relation ceilometer mongodb

then Keystone and Rabbit relationships need to be established:

juju add-relation ceilometer rabbitmq
juju add-relation ceilometer keystone:identity-service
juju add-relation ceilometer keystone:identity-notifications

In order to capture the calculations, a Ceilometer compute agent needs to be installed in each nova node, and be related with Ceilometer service:

juju deploy ceilometer-agent
juju add-relation ceilometer-agent nova-compute
juju add-relation ceilometer:ceilometer-service ceilometer-agent:ceilometer-service

Ceilometer provides an API service that can be used to retrieve Openstack metrics.