Juju Charm - Ceilometer
Go to file
James Page 98d931fb7f Remove templates for unsupported releases
Grizzly and Havana have been unsupported for some time; remove
templates as they are no longer tested or required.

Change-Id: I97377182fe28e3f7aa98784b537e1a353a58280d
2016-03-04 11:52:44 +00:00
actions Use aodh-notifier and aodh-evaluator starting in Mitaka 2016-01-06 14:59:34 +00:00
charmhelpers Resync charm-helpers 2016-03-02 12:05:26 +00:00
hooks Update ceilometer relation when id relation done 2016-03-01 15:48:02 +00: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 Remove templates for unsupported releases 2016-03-04 11:52:44 +00:00
tests [hopem,r=] 2016-02-11 14:39:48 +00:00
unit_tests [billy-olsen,r=] Use peer_retrieve instead of relation_get when fetching 2016-02-03 17:09:08 -07:00
.coveragerc Add unit tests, tidylint 2013-10-20 12:32:35 -07:00
.gitignore Resync charm-helpers 2016-03-02 12:05:26 +00:00
.gitreview Add gitreview prior to migration to openstack 2016-02-24 21:53:27 +00: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 Resync le charm helpers 2015-06-04 09:44:43 +01: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 Tidy tox targets 2016-02-16 06:58:31 +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.