1
0
mirror of https://github.com/krislamo/puppet-fluentd synced 2024-09-20 04:30:36 +00:00

prettified comments for external classes/defines

This commit is contained in:
Max Wilhelm 2015-12-04 11:03:52 +01:00
parent 1057a97d2e
commit ef70744f8c
5 changed files with 144 additions and 7 deletions

View File

@ -1,9 +1,46 @@
# Configure a fluentd filter # Define: fluentd::filter
# ===========================
#
# Configures a 'filter' config file.
#
# Parameters
# ----------
# [*ensure*]
# Default: 'present'
# [*priority*]
# Defines the priority
# Default: '20'
# [*pattern*]
# Defines matching the pattern
# Default: '**'
# [*config*]
# Configuration, which must be a hash
# Default: {}'
#
# Examples
# --------
#
# @example
# ::fluentd::filter { 'test':
# priority => 20,
# pattern => '*.test'
# config => {
# 'type' => 'record_transformer'
# 'record' => {
# 'hostname' => '${hostname}'
# }
# }
# }
#
# Copyright
# ---------
#
# Copyright 2015 wywy GmbH, unless otherwise noted.
# #
define fluentd::filter ( define fluentd::filter (
$ensure = present, $ensure = present,
$priority = 20, $priority = 20,
$pattern = '', $pattern = '**',
$config = {}, $config = {},
) { ) {

View File

@ -1,7 +1,7 @@
# Class: fluentd # Class: fluentd
# =========================== # ===========================
# #
# Full description of class fluentd here. # Installs and configures Fluentd.
# #
# Parameters # Parameters
# ---------- # ----------

View File

@ -1,9 +1,51 @@
# Configure a fluentd match # Define: fluentd::match
# ===========================
#
# Configures a 'match' config file.
#
# Parameters
# ----------
# [*ensure*]
# Default: 'present'
# [*priority*]
# Defines the priority
# Default: '30'
# [*pattern*]
# Defines matching the pattern
# Default: '**'
# [*config*]
# Configuration, which must be a hash
# Default: {}'
#
# Examples
# --------
#
# @example
# ::fluentd::match { 'test':
# priority => 30,
# pattern => '*.test'
# config => {
# 'flush_interval' => '30s'
# 'type' => 'secure_forward'
# 'secure' => 'yes'
# 'shared_key' => 'my_shared_key'
# 'self_hostname' => 'instance.test.com'
# 'ca_cert_path' => '/path/to/ca.cert'
# 'servers' => {
# 'host' => 'test.server.com'
# }
# }
# }
#
# Copyright
# ---------
#
# Copyright 2015 wywy GmbH, unless otherwise noted.
# #
define fluentd::match ( define fluentd::match (
$ensure = present, $ensure = present,
$priority = 30, $priority = 30,
$pattern = '', $pattern = '**',
$config = {}, $config = {},
) { ) {

View File

@ -1,4 +1,29 @@
# Install fluentd plugins # Define: fluentd::plugin
# ===========================
#
# Installs a plugin for fluentd.
#
# Parameters
# ----------
# [*ensure*]
# Default: 'present'
# [*type*]
# Which type of plugin, allowed values are gem and file
# Default: 'gem'
# [*source*]
# source to file for the plugin only needed if you use type: file
# Default: 'undef'
#
# Examples
# --------
#
# @example
# ::fluentd::plugin { 'fluent-plugin-elasticsearch': }
#
# Copyright
# ---------
#
# Copyright 2015 wywy GmbH, unless otherwise noted.
# #
define fluentd::plugin ( define fluentd::plugin (
$ensure = present, $ensure = present,

View File

@ -1,4 +1,37 @@
# Configure a fluentd source # Define: fluentd::source
# ===========================
#
# Configures a 'source' config file.
#
# Parameters
# ----------
# [*ensure*]
# Default: 'present'
# [*priority*]
# Defines the priority
# Default: '10'
# [*config*]
# Configuration, which must be a hash
# Default: {}'
#
# Examples
# --------
#
# @example
# ::fluentd::source { 'test':
# priority => 10,
# config => {
# 'type' => 'tail'
# 'format' => 'json'
# 'path' => '/var/log/test-application/*.json'
# 'tag' => 'application.test'
# }
# }
#
# Copyright
# ---------
#
# Copyright 2015 wywy GmbH, unless otherwise noted.
# #
define fluentd::source ( define fluentd::source (
$ensure = present, $ensure = present,