puppet-tripleo/manifests/profile/base/metrics/collectd/collectd_plugin.pp
Lars Kellogg-Stedman e56f9e304f updates to collectd support
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
2017-01-18 10:06:15 -05:00

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}"
}