11
by yolanda.robla at canonical
fixes due to review |
1 |
Overview
|
2 |
--------
|
|
3 |
||
4 |
This charm provides the Ceilometer service for OpenStack. It is intended to |
|
5 |
be used alongside the other OpenStack components, starting with the Folsom |
|
6 |
release. |
|
7 |
||
14
by yolanda.robla at canonical
fixing pep8 |
8 |
Ceilometer is made up of 2 separate services: an API service, and a collector |
33
by James Page
Tidy readme |
9 |
service. This charm allows them to be deployed in different combination, |
10 |
depending on user preference and requirements. |
|
11
by yolanda.robla at canonical
fixes due to review |
11 |
|
33
by James Page
Tidy readme |
12 |
This charm was developed to support deploying Folsom on both Ubuntu Quantal |
13 |
and Ubuntu Precise. Since Ceilometer is only available for Ubuntu 12.04 via |
|
14 |
the Ubuntu Cloud Archive, deploying this charm to a Precise machine will by |
|
15 |
default install Ceilometer and its dependencies from the Cloud Archive. |
|
11
by yolanda.robla at canonical
fixes due to review |
16 |
|
17 |
Usage
|
|
18 |
-----
|
|
19 |
||
33
by James Page
Tidy readme |
20 |
In order to deploy Ceilometer service, the MongoDB service is required: |
11
by yolanda.robla at canonical
fixes due to review |
21 |
|
22 |
juju deploy mongodb
|
|
23 |
juju deploy ceilometer
|
|
24 |
juju add-relation ceilometer mongodb
|
|
25 |
||
33
by James Page
Tidy readme |
26 |
then Keystone and Rabbit relationships need to be established: |
11
by yolanda.robla at canonical
fixes due to review |
27 |
|
28 |
juju add-relation ceilometer rabbitmq
|
|
29 |
juju add-relation ceilometer keystone
|
|
30 |
||
33
by James Page
Tidy readme |
31 |
In order to capture the calculations, a Ceilometer compute agent needs to be |
32 |
installed in each nova node, and be related with Ceilometer service: |
|
11
by yolanda.robla at canonical
fixes due to review |
33 |
|
34 |
juju deploy ceilometer-agent
|
|
35 |
juju add-relation ceilometer-agent nova-compute
|
|
36 |
juju add-relation ceilometer:ceilometer-service ceilometer-agent:ceilometer-service
|
|
37 |
||
14
by yolanda.robla at canonical
fixing pep8 |
38 |
Ceilometer provides an API service that can be used to retrieve |
11
by yolanda.robla at canonical
fixes due to review |
39 |
Openstack metrics. |