Puppet Class: collectd::plugin::mysql

Defined in:
manifests/plugin/mysql.pp

Overview

Parameters:

  • ensure (Any) (defaults to: present)
  • interval (Any) (defaults to: undef)


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