mirror of
https://github.com/krislamo/puppet-fluentd
synced 2024-11-12 21:50:34 +00:00
17 lines
409 B
ObjectPascal
17 lines
409 B
ObjectPascal
|
# configure match
|
||
|
::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'
|
||
|
}
|
||
|
}
|
||
|
}
|