Juju Charm - Ceilometer
Go to file
James Page 0afcf4e458 Fix liberty/mitaka typo from previous test definition update batch. 2016-01-19 14:32:12 +00: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 Tidy py files in root to lib folder, sort out import of hooks in actions 2015-10-16 13:29:41 +01: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 Fix typo in mitaka amulet test definition 2016-01-19 12:47:40 +00:00
unit_tests Lint fixes for aodh-notifier and aodh-evaluator updates 2016-01-06 21:38:19 +00:00
.bzrignore Add tox support 2015-11-02 09:42:43 +00:00
.coveragerc Add unit tests, tidylint 2013-10-20 12:32:35 -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 Add tox support 2015-11-02 09:42:43 +00:00
tox.ini Add tox support 2015-11-02 09:42:43 +00: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.