1
0
mirror of https://github.com/krislamo/puppet-fluentd synced 2024-09-20 12:40:34 +00:00
puppet-fluentd/examples/source.pp

11 lines
222 B
ObjectPascal
Raw Normal View History

2015-12-07 12:23:41 +00:00
# configure source
::fluentd::source { 'test':
priority => 10,
config => {
'type' => 'tail',
'format' => 'json',
'path' => '/var/log/test-application/*.json',
'tag' => 'application.test'
}
}