Puppet Class: collectd::plugin::write_http

Defined in:
manifests/plugin/write_http.pp

Overview

Parameters:

  • ensure (Any) (defaults to: 'present')
  • urls (Hash) (defaults to: {})


2
3
4
5
6
7
8
9
10
11
12
13
# File 'manifests/plugin/write_http.pp', line 2

class collectd::plugin::write_http (
  $ensure    = 'present',
  Hash $urls = {},
) {

  include ::collectd

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