Browse Source
Ceilometer supports multiple notifications. The config entry in ceilometer.conf allows for a multi-value for notification/messaging_urls. Change-Id: Ic1791c7021bf2dbb06269317b8495eebc8d6e7ed Closes-Bug: 1564061changes/46/304346/8
10 changed files with 61 additions and 17 deletions
@ -1,10 +0,0 @@
|
||||
Puppet::Type.type(:ceilometer_config).provide( |
||||
:ini_setting, |
||||
:parent => Puppet::Type.type(:openstack_config).provider(:ini_setting) |
||||
) do |
||||
|
||||
def self.file_path |
||||
'/etc/ceilometer/ceilometer.conf' |
||||
end |
||||
|
||||
end |
@ -0,0 +1,13 @@
|
||||
Puppet::Type.type(:ceilometer_config).provide( |
||||
:openstackconfig, |
||||
:parent => Puppet::Type.type(:openstack_config).provider(:ruby) |
||||
) do |
||||
|
||||
def self.file_path |
||||
'/etc/ceilometer/ceilometer.conf' |
||||
end |
||||
|
||||
def file_path |
||||
self.class.file_path |
||||
end |
||||
end |
@ -0,0 +1,4 @@
|
||||
--- |
||||
features: |
||||
- Added messaging_urls parameter to ceilometer agents notification. |
||||
The parameter accepts an array. |
@ -0,0 +1,6 @@
|
||||
--- |
||||
features: |
||||
- Switched ceilometer_config from ini_setting type to openstack_config type. |
||||
- Added the ability to pass in messaging_urls into notifications agent. This |
||||
will allow a user to configure ceilometer to talk to different virtualhosts |
||||
or entirely different messaging queues. |
Loading…
Reference in new issue