Puppet Class: collectd::plugin::mysql
- Defined in:
- manifests/plugin/mysql.pp
Overview
MySQL plugin collectd.org/wiki/index.php/Plugin:MySQL
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
# File 'manifests/plugin/mysql.pp', line 3
class collectd::plugin::mysql (
$ensure = present,
$interval = undef,
){
if $::osfamily == 'Redhat' {
package { 'collectd-mysql':
ensure => $ensure,
}
}
collectd::plugin { 'mysql':
interval => $interval,
}
}
|