Defined Type: collectd::plugin

Defined in:
manifests/plugin.pp

Overview

Define: collectd::plugin

Load a collectd plugin. This will add a LoadPlugin statement in ‘/etc/collectd/loadplugins.conf`

If a custom interval was defined by ‘collectd::config`, this is where it will be set.

Sample Usage:

include 'collectd'
collectd::plugin { ['cpu', 'memory', 'disk']: }


14
15
16
# File 'manifests/plugin.pp', line 14

define collectd::plugin {
  Collectd::Setup::Loadplugin <| title == $name |>
}