4

I'm interested how to notify other applications of events in openstack. For example I want't to know in my application when an instance in nova was suspended or resumed. Are there any webhooks or something like that where could I get that info?

I was looking at official documentation on notification but I can't really make anything out of that: http://docs.openstack.org/trunk/openstack-network/admin/content/ch_adv_notification_overview.html

I could not find any examples with code on the web too.

Has anyone been doing anything like this yet?

andy57
  • 123
  • 4

1 Answers1

4

Take a look at the OpenStack Ceilometer project. It captures different kinds of OpenStack events and log them into a database. The primary use case is for metering, but you may find it useful for your situation.

Lorin Hochstein
  • 57,372
  • 31
  • 105
  • 141
  • See also [Alarms](http://docs.openstack.org/developer/ceilometer/webapi/v2.html#alarms) – Guido Mar 17 '14 at 08:05