Juju Charm - Ceilometer
Go to file
James Page 3e1cd75a8e Re-license charm as Apache-2.0
All contributions to this charm where made under Canonical
copyright; switch to Apache-2.0 license as agreed so we
can move forward with official project status.

Change-Id: I15bca9b973b61e408e25c113035702a596c45268
2016-06-28 11:36:46 +01:00
actions Re-license charm as Apache-2.0 2016-06-28 11:36:46 +01:00
charmhelpers Switch to using charm-store for amulet tests 2016-06-17 11:28:01 +01:00
hooks Re-license charm as Apache-2.0 2016-06-28 11:36:46 +01:00
lib Re-license charm as Apache-2.0 2016-06-28 11:36:46 +01:00
ocf/openstack Account for ssl port monitoring. 2014-12-17 16:22:18 -07:00
templates Add full support for mitaka and drop old releases 2016-03-04 17:25:06 +00:00
tests Re-license charm as Apache-2.0 2016-06-28 11:36:46 +01:00
unit_tests Re-license charm as Apache-2.0 2016-06-28 11:36:46 +01:00
.coveragerc Add unit tests, tidylint 2013-10-20 12:32:35 -07:00
.gitignore Re-license charm as Apache-2.0 2016-06-28 11:36:46 +01: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
LICENSE Re-license charm as Apache-2.0 2016-06-28 11:36:46 +01:00
Makefile Update/add pause/resume maintenance mode and sync charm-helpers 2016-03-17 11:47:42 +00:00
README.md Add Juju Network Space support 2016-03-31 09:25:24 +01:00
actions.yaml Rebased on trunk 2015-09-22 15:34:48 +00:00
charm-helpers-hooks.yaml Add hardening support 2016-03-24 11:12:40 +00:00
charm-helpers-tests.yaml Added amulet tests 2015-02-17 14:09:16 +00:00
config.yaml Add hardening support 2016-03-24 11:12:40 +00:00
copyright Re-license charm as Apache-2.0 2016-06-28 11:36:46 +01:00
hardening.yaml Add hardening support 2016-03-24 11:12:40 +00:00
icon.svg [trivial] Add icon 2014-01-31 12:01:25 +00:00
metadata.yaml Add Juju Network Space support 2016-03-31 09:25:24 +01: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-23 09:30:16 +00:00
tox.ini Update to charm-tools >= 2.0.0 2016-03-23 09:30:16 +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.

Network Space support

This charm supports the use of Juju Network Spaces, allowing the charm to be bound to network space configurations managed directly by Juju. This is only supported with Juju 2.0 and above.

API endpoints can be bound to distinct network spaces supporting the network separation of public, internal and admin endpoints.

To use this feature, use the --bind option when deploying the charm:

juju deploy ceilometer --bind "public=public-space internal=internal-space admin=admin-space"

alternatively these can also be provided as part of a juju native bundle configuration:

ceilometer:
  charm: cs:xenial/ceilometer
  bindings:
    public: public-space
    admin: admin-space
    internal: internal-space

NOTE: Spaces must be configured in the underlying provider prior to attempting to use them.

NOTE: Existing deployments using os-*-network configuration options will continue to function; these options are preferred over any network space binding provided if set.