Puppet Class: collectd::plugin::nginx

Defined in:
manifests/plugin/nginx.pp

Overview

Parameters:

  • url (Any)
  • ensure (Any) (defaults to: present)
  • user (Any) (defaults to: undef)
  • password (Any) (defaults to: undef)
  • verifypeer (Any) (defaults to: undef)
  • verifyhost (Any) (defaults to: undef)
  • cacert (Any) (defaults to: undef)
  • interval (Any) (defaults to: undef)


2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# File 'manifests/plugin/nginx.pp', line 2

class collectd::plugin::nginx (
  $url,
  $ensure     = present,
  $user       = undef,
  $password   = undef,
  $verifypeer = undef,
  $verifyhost = undef,
  $cacert     = undef,
  $interval   = undef,
) {

  if $::osfamily == 'Redhat' {
    package { 'collectd-nginx':
      ensure => $ensure,
    }
  }

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