e56f9e304f
Based on Steve Hardy's comments in https://review.openstack.org/#/c/413748/, we need to move handling of the list of plugins out of the heat templates and into puppet. This module now uses the service_names variable to look up information on per-service collectd plugins. Change-Id: Ie5fba01e1f91ffdc39eb0eb1be9b1464c797b04f
7 lines
243 B
Puppet
7 lines
243 B
Puppet
# We use this to transform a list of unqualified plugin names
|
|
# (like ['disk', 'ntpd']) into the correct collectd plugin classes.
|
|
define tripleo::profile::base::metrics::collectd::collectd_plugin (
|
|
) {
|
|
include "collectd::plugin::${title}"
|
|
}
|