File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -59,6 +59,7 @@ documentation for each plugin for configurable attributes.
5959* ` apache ` (see [ collectd::plugin::apache] ( #class-collectdpluginapache ) below)
6060* ` bind ` (see [ collectd::plugin::bind] ( #class-collectdpluginbind ) below)
6161* ` cpu ` (see [ collectd::plugin::cpu] ( #class-collectdplugincpu ) below)
62+ * ` cpufreq ` (see [ collectd::plugin::cpufreq] ( #class-collectdplugincpufreq ) below)
6263* ` csv ` (see [ collectd::plugin::csv] ( #class-collectdplugincsv ) below)
6364* ` curl ` (see [ collectd::plugin::curl] ( #class-collectdplugincurl ) below)
6465* ` curl_json ` (see [ collectd::plugin::curl_json] ( #class-collectdplugincurl_json ) below)
@@ -146,6 +147,14 @@ class { 'collectd::plugin::bind':
146147``` puppet
147148class { 'collectd::plugin::cpu':
148149}
150+
151+
152+ ```
153+ ####Class: ` collectd::plugin::cpufreq `
154+
155+ ``` puppet
156+ class { 'collectd::plugin::cpufreq':
157+ }
149158```
150159
151160####Class: ` collectd::plugin::csv `
Original file line number Diff line number Diff line change 1+ # https://collectd.org/wiki/index.php/Plugin:CPUFreq
2+ class collectd::plugin::cpufreq (
3+ $ensure = present ,
4+ ) {
5+ collectd::plugin {'cpufreq' :
6+ ensure => $ensure
7+ }
8+ }
Original file line number Diff line number Diff line change 1616collectd::plugin { 'processes' : }
1717collectd::plugin { 'swap' : }
1818collectd::plugin { 'users' : }
19-
19+ collects::plugin { 'cpufreq' : }
You can’t perform that action at this time.
0 commit comments