~ubuntu-branches/ubuntu/trusty/ceilometer/trusty-proposed

« back to all changes in this revision

Viewing changes to doc/source/architecture.rst

  • Committer: Package Import Robot
  • Author(s): Chuck Short, James Page, Chuck Short
  • Date: 2014-01-23 15:08:11 UTC
  • mfrom: (1.1.11)
  • Revision ID: package-import@ubuntu.com-20140123150811-1zaismsuyh1hcl8y
Tags: 2014.1~b2-0ubuntu1
[ James Page ]
* d/control: Add python-jsonpath-rw to BD's.
* d/p/fix-setup-requirements.patch: Bump WebOb to support < 1.4.
 (LP: #1261101)

[ Chuck Short ]
* New upstream version.
* debian/control, debian/ceilometer-common.install: Split out
  ceilometer-alarm-evaluator and ceilometer-alarm-notifier into their
  own packages. (LP: #1250002)
* debian/ceilometer-agent-central.logrotate,
  debian/ceilometer-agent-compute.logrotate,
  debian/ceilometer-api.logrotate,
  debian/ceilometer-collector.logrotate: Add logrotate files, 
  thanks to Ahmed Rahal. (LP: #1224223)
* Fix typos in upstart files.

Show diffs side-by-side

added added

removed removed

Lines of Context:
227
227
 
228
228
 
229
229
There can be multiple form of actions, but two have been implemented so far:
230
 
1. http call back: you provide a URL to be called whenever the alarm has been set
 
230
 
 
231
1. :term:`HTTP callback`: you provide a URL to be called whenever the alarm has been set
231
232
   off. The payload of the request contains all the details of why the alarm went
232
233
   off.
233
 
2. log: mostly useful for debugging, stores alarms in a log file.
 
234
2. :term:`log`: mostly useful for debugging, stores alarms in a log file.
234
235
 
235
236
For more details on this, I recommend you to read the blog post by
236
237
Mehdi Abaakouk `Autoscaling with Heat and Ceilometer`_. Particular attention
327
328
the API definition class, but it is encouraged as a way to discover
328
329
API changes.
329
330
 
330
 
.. note::
331
 
 
332
 
   There is ongoing work to add a generic plugin system to Nova.  If
333
 
   that is implemented as part of the common library, ceilometer may
334
 
   use it (or adapt it as necessary for our use). If it remains part
335
 
   of Nova for Folsom we should probably not depend on it because
336
 
   loading plugins is trivial with setuptools.
337
 
 
338
331
Polling
339
332
-------
340
333