Merge "clean up non-install parts of contributor docs"

This commit is contained in:
Zuul 2017-12-19 22:51:50 +00:00 committed by Gerrit Code Review
commit 0c9cff94bd
8 changed files with 117 additions and 189 deletions

View File

@ -189,6 +189,8 @@ compute service, see `Telemetry services
<https://docs.openstack.org/ceilometer/latest/install/install-compute-ubuntu.html>`__
in the Installation Tutorials and Guides.
.. _meter_definitions:
Meter definitions
-----------------

View File

@ -60,15 +60,11 @@ How is data collected?
The Ceilometer project created 2 methods to collect data:
1. :term:`Notification agent` which takes messages generated on the
notification bus and transforms them into Ceilometer samples or events. This
is **the preferred method** of data collection. If you are working on some
OpenStack related project and are using the Oslo library, you are kindly
invited to come and talk to one of the project members to learn how you
could quickly add instrumentation for your project.
2. :term:`Polling agent`, which is the less preferred method, will poll
some API or other tool to collect information at a regular interval.
The polling approach is less preferred due to the load it can impose
on the API services.
notification bus and transforms them into Ceilometer samples or events.
2. :term:`Polling agent`, will poll some API or other tool to collect
information at a regular interval. The polling approach may impose
significant on the API services so should only be used on optimised
endpoints.
The first method is supported by the ceilometer-notification agent, which
monitors the message queues for notifications. Polling agents can be configured
@ -174,6 +170,11 @@ of data and if combined with historical or temporal context, can be used to
derive even more data. Ceilometer offers various transformers which can be used
to manipulate data in the pipeline.
.. note::
The equivalent functionality can be handled more stably by storage
drivers such as Gnocchi.
Publishing the data
-------------------
@ -191,10 +192,7 @@ Currently, processed data can be published using 7 different transports:
which can be consumed by an external system;
3. udp, which publishes samples using UDP packets;
4. http, which targets a REST interface;
5. kafka, which publishes data to a Kafka message queue to be consumed by any system
that supports Kafka.
6. file, which publishes samples to a file with specified name and location;
7. database, which stores samples to the legacy ceilometer database system.
5. file, which publishes samples to a file with specified name and location;
Storing/Accessing the data

View File

@ -1,33 +0,0 @@
..
Licensed under the Apache License, Version 2.0 (the "License"); you may
not use this file except in compliance with the License. You may obtain
a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
License for the specific language governing permissions and limitations
under the License.
.. _contributing:
============================
Contributing to Ceilometer
============================
Ceilometer follows the same workflow as other OpenStack projects. To start
contributing to Ceilometer, please follow the workflow found here_.
.. _here: https://wiki.openstack.org/wiki/Gerrit_Workflow
Project Hosting Details
=======================
:Bug tracker: https://launchpad.net/ceilometer
:Mailing list: http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev (prefix subjects with ``[Ceilometer]`` for faster responses)
:Wiki: https://wiki.openstack.org/wiki/Ceilometer
:Code Hosting: https://git.openstack.org/cgit/openstack/ceilometer/
:Code Review: https://review.openstack.org/#/q/status:open+project:openstack/ceilometer,n,z

View File

@ -2,10 +2,22 @@ Contribution Guidelines
=======================
In the Contributions Guide, you will find documented policies for
developing with Ceiloemter. This includes the processes we use for
developing with Ceilometer. This includes the processes we use for
bugs, contributor onboarding, core reviewer memberships, and other
procedural items.
Ceilometer follows the same workflow as other OpenStack projects. To start
contributing to Ceilometer, please follow the workflow found here_.
.. _here: https://wiki.openstack.org/wiki/Gerrit_Workflow
:Bug tracker: https://launchpad.net/ceilometer
:Mailing list: http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev (prefix subjects with ``[Ceilometer]`` for faster responses)
:Wiki: https://wiki.openstack.org/wiki/Ceilometer
:Code Hosting: https://git.openstack.org/cgit/openstack/ceilometer/
:Code Review: https://review.openstack.org/#/q/status:open+project:openstack/ceilometer,n,z
Developer reference
-------------------
@ -16,11 +28,9 @@ Developer reference
architecture
measurements
events
contributing
install/index
configuration
plugins
new_meters
new_resource_types
testing
gmr

View File

@ -27,9 +27,82 @@ For the list of existing meters see the tables under the
.. _Measurements page: https://docs.openstack.org/ceilometer/latest/admin/telemetry-measurements.html
Adding new meters
=================
New measurements
================
If you would like to add new meters please check the
:ref:`add_new_meters` page under in the Contributing
Ceilometer is designed to collect measurements from OpenStack services and
from other external components. If you would like to add new meters to the
currently existing ones, you need to follow the guidelines given in this
section.
.. _meter_types:
Types
-----
Three type of meters are defined in Ceilometer:
.. index::
double: meter; cumulative
double: meter; gauge
double: meter; delta
========== ==============================================================================
Type Definition
========== ==============================================================================
Cumulative Increasing over time (instance hours)
Gauge Discrete items (floating IPs, image uploads) and fluctuating values (disk I/O)
Delta Changing over time (bandwidth)
========== ==============================================================================
When you're about to add a new meter choose one type from the above list, which
is applicable.
Units
-----
1. Whenever a volume is to be measured, SI approved units and their
approved symbols or abbreviations should be used. Information units
should be expressed in bits ('b') or bytes ('B').
2. For a given meter, the units should NEVER, EVER be changed.
3. When the measurement does not represent a volume, the unit
description should always describe WHAT is measured (ie: apples,
disk, routers, floating IPs, etc.).
4. When creating a new meter, if another meter exists measuring
something similar, the same units and precision should be used.
5. Meters and samples should always document their units in Ceilometer (API
and Documentation) and new sampling code should not be merged without the
appropriate documentation.
============ ======== ============== =======================
Dimension Unit Abbreviations Note
============ ======== ============== =======================
None N/A Dimension-less variable
Volume byte B
Time seconds s
============ ======== ============== =======================
Naming convention
-----------------
If you plan on adding meters, please follow the convention below:
1. Always use '.' as separator and go from least to most discriminant word.
For example, do not use ephemeral_disk_size but disk.ephemeral.size
2. When a part of the name is a variable, it should always be at the end and start with a ':'.
For example, do not use <type>.image but image:<type>, where type is your variable name.
3. If you have any hesitation, come and ask in #openstack-telemetry
Meter definitions
-----------------
Meters definitions by default, are stored in separate configuration
file, called :file:`ceilometer/data/meters.d/meters.yaml`. This is essentially
a replacement for prior approach of writing notification handlers to consume
specific topics.
A detailed description of how to use meter definition is illustrated in
the `admin_guide`_.
.. _admin_guide: https://docs.openstack.org/ceilometer/latest/admin/telemetry-data-collection.html#meter-definitions

View File

@ -1,115 +0,0 @@
..
Copyright 2012 New Dream Network (DreamHost)
Licensed under the Apache License, Version 2.0 (the "License"); you may
not use this file except in compliance with the License. You may obtain
a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
License for the specific language governing permissions and limitations
under the License.
.. _add_new_meters:
==================
New measurements
==================
Ceilometer is designed to collect measurements from OpenStack services and
from other external components. If you would like to add new meters to the
currently existing ones, you need to follow the guidelines given in this
section.
.. _meter_types:
Types
=====
Three type of meters are defined in Ceilometer:
.. index::
double: meter; cumulative
double: meter; gauge
double: meter; delta
========== ==============================================================================
Type Definition
========== ==============================================================================
Cumulative Increasing over time (instance hours)
Gauge Discrete items (floating IPs, image uploads) and fluctuating values (disk I/O)
Delta Changing over time (bandwidth)
========== ==============================================================================
When you're about to add a new meter choose one type from the above list, which
is applicable.
Units
=====
1. Whenever a volume is to be measured, SI approved units and their
approved symbols or abbreviations should be used. Information units
should be expressed in bits ('b') or bytes ('B').
2. For a given meter, the units should NEVER, EVER be changed.
3. When the measurement does not represent a volume, the unit
description should always describe WHAT is measured (ie: apples,
disk, routers, floating IPs, etc.).
4. When creating a new meter, if another meter exists measuring
something similar, the same units and precision should be used.
5. Meters and samples should always document their units in Ceilometer (API
and Documentation) and new sampling code should not be merged without the
appropriate documentation.
============ ======== ============== =======================
Dimension Unit Abbreviations Note
============ ======== ============== =======================
None N/A Dimension-less variable
Volume byte B
Time seconds s
============ ======== ============== =======================
Meters
======
Naming convention
-----------------
If you plan on adding meters, please follow the convention below:
1. Always use '.' as separator and go from least to most discriminant word.
For example, do not use ephemeral_disk_size but disk.ephemeral.size
2. When a part of the name is a variable, it should always be at the end and start with a ':'.
For example, do not use <type>.image but image:<type>, where type is your variable name.
3. If you have any hesitation, come and ask in #openstack-telemetry
Meter definitions
-----------------
Meters definitions by default, are stored in separate configuration
file, called :file:`ceilometer/data/meters.d/meters.yaml`. This is essentially
a replacement for prior approach of writing notification handlers to consume
specific topics.
A detailed description of how to use meter definition is illustrated in
the `admin_guide`_.
.. _admin_guide: https://docs.openstack.org/ceilometer/latest/admin/telemetry-data-collection.html#meter-definitions
Non-metric meters and events
----------------------------
Ceilometer supports collecting notifications as events. It is highly
recommended to use events for capturing if something happened in the system
or not as opposed to defining meters of which volume will be constantly '1'.
Events enable better representation and querying of metadata rather than
statistical aggregations required for Samples. When the event support is
turned on for Ceilometer, event type meters are collected into the event
database too, which can lead to the duplication of a huge amount of data.
In order to learn more about events see the :ref:`events` section.

View File

@ -61,7 +61,7 @@ the folder ``ceilometer/compute/pollsters``.
Notifications mechanism uses plugins as well, though in most cases, this is not
needed. A meter definition can be directly added to
:file:`ceilometer/data/meters.d/meters.yaml` to match the event type. For more
information, see the :ref:`add_new_meters` page.
information, see the :ref:`meter_definitions` page.
We are using these two existing plugins as examples as the first one provides
an example of how to interact when you need to retrieve information from an

View File

@ -24,35 +24,28 @@ run through tox_.
$ sudo pip install tox
2. Install the test dependencies::
$ sudo pip install -r /opt/stack/ceilometer/test-requirements.txt
3. Run the unit and code-style tests::
2. Run the unit and code-style tests::
$ cd /opt/stack/ceilometer
$ tox -e py27,pep8
As tox is a wrapper around testr, it also accepts the same flags as testr.
See the `testr documentation`_ for details about these additional flags.
As tox is a wrapper around testr, it also accepts the same flags as testr.
See the `testr documentation`_ for details about these additional flags.
.. _testr documentation: https://testrepository.readthedocs.org/en/latest/MANUAL.html
Use a double hyphen to pass options to testr. For example, to run only tests under tests/unit/image::
Use a double hyphen to pass options to testr. For example, to run only tests
under tests/unit/image::
$ tox -e py27 -- image
$ tox -e py27 -- image
To debug tests (ie. break into pdb debugger), you can use ''debug'' tox
environment. Here's an example, passing the name of a test since you'll
normally only want to run the test that hits your breakpoint::
To debug tests (ie. break into pdb debugger), you can use ''debug'' tox
environment. Here's an example, passing the name of a test since you'll
normally only want to run the test that hits your breakpoint::
$ tox -e debug ceilometer.tests.test_bin
$ tox -e debug ceilometer.tests.unit.test_bin
For reference, the ``debug`` tox environment implements the instructions
here: https://wiki.openstack.org/wiki/Testr#Debugging_.28pdb.29_Tests
For reference, the ``debug`` tox environment implements the instructions
here: https://wiki.openstack.org/wiki/Testr#Debugging_.28pdb.29_Tests
.. seealso::
* tox_
.. _tox: http://tox.testrun.org/latest/
.. _tox: https://tox.readthedocs.io/en/latest/