Puppet Class: collectd::plugin::apache

Defined in:
manifests/plugin/apache.pp

Overview

Parameters:

  • ensure (Any) (defaults to: 'present')
  • manage_package (Any) (defaults to: undef)
  • instances (Any) (defaults to: { 'localhost' => { 'url' => 'http://localhost/mod_status?auto' } })
  • interval (Any) (defaults to: undef)
  • package_install_options (Any) (defaults to: $collectd::package_install_options)


2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# File 'manifests/plugin/apache.pp', line 2

class collectd::plugin::apache (
  $ensure                  = 'present',
  $manage_package          = undef,
  $instances               = { 'localhost' => { 'url' => 'http://localhost/mod_status?auto' } },
  $interval                = undef,
  $package_install_options = $collectd::package_install_options,
) {

  include ::collectd

  $_manage_package = pick($manage_package, $::collectd::manage_package)

  validate_hash($instances)

  if $package_install_options != undef {
    validate_array($package_install_options)
  }

  if $::osfamily == 'RedHat' {
    if $_manage_package {
      package { 'collectd-apache':
        ensure          => $ensure,
        install_options => $package_install_options,
      }
    }
  }

  collectd::plugin { 'apache':
    ensure   => $ensure,
    content  => template('collectd/plugin/apache.conf.erb'),
    interval => $interval,
  }
}