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

66 lines
1.4 KiB
ObjectPascal
Raw Normal View History

# 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 => {
2015-12-04 11:54:07 +00:00
# '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',
# 'server' => [{
# 'host' => 'test.server.com'
# }]
# }
# }
#
# Copyright
# ---------
#
2017-08-10 12:24:22 +00:00
# Copyright 2015 wywy, unless otherwise noted.
2015-12-01 13:19:18 +00:00
#
define fluentd::match (
$ensure = present,
$priority = 30,
$pattern = '**',
2015-12-01 13:19:18 +00:00
$config = {},
) {
# parameter validation
if ! ($ensure in [ 'present', 'absent' ]) {
fail('ensure parameter must be present or absent')
}
validate_integer($priority)
validate_string($pattern)
validate_hash($config)
2015-12-01 13:19:18 +00:00
fluentd::config::file { "match-${title}":
ensure => $ensure,
priority => $priority,
content => template( 'fluentd/match.erb'),
}
}