add initial release notes

Change-Id: I13fa31c4afa6d8d40f75c896f7fb0cfff175f9bc
This commit is contained in:
gordon chung 2015-12-02 18:10:10 -05:00
parent e8a0be43d2
commit ce819a5bd4
5 changed files with 37 additions and 0 deletions

View File

@ -0,0 +1,5 @@
---
fixes:
- >
[`bug 1518447 <https://bugs.launchpad.net/aodh/+bug/1518447>`_]
Fix to ensure ceilometerclient is properly initialised on startup.

View File

@ -0,0 +1,6 @@
---
fixes:
- >
[`bug 1511252 <https://bugs.launchpad.net/aodh/+bug/1511252>`_]
Fix an issue with combination alarms where it fails to evaluate
all issues in the chain of alarms.

View File

@ -0,0 +1,6 @@
---
fixes:
- >
[`bug 1513738 <https://bugs.launchpad.net/aodh/+bug/1513738>`_]
Fix an issue where alarms using Gnocchi aggregations are not being
evaluated.

View File

@ -0,0 +1,16 @@
---
features:
- >
Support for queue based communication between alarm evaluator service and
alarm notifier services was added. Original implementation involved using
RPC but there is significant overhead involved with using RPC. Work queues
provided required functionality with better performance.
upgrade:
- >
Queue based communication is the new default IPC protocol. RPC can still
be used by choosing rpc as ipc_protocol option. Only one protocol can be
run at any given time.
deprecations:
- >
Because queues provide the equivalent functionality. RPC support is
deprecated and will be removed after Mitaka.

View File

@ -0,0 +1,4 @@
---
features:
- >
Remove eventlet from Aodh in favour of threaded approach